Skip to main content
summaryrefslogtreecommitdiffstats
blob: 509ab6bb0c404cdaccb86248ed889cd0083a47d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.command.internal.env.ant;

/**
 * Simple class to hold data mapping information once retrieved from Ant property file.
 * Map is used for many to one mappings involving mapping of multiple properties to a bean.
 * In this case, the key_ and value_ should be set to an empty string and all key value pairs
 * for properties put into the map instead.  The transformation for this case would be a modifier
 * which will set the properties onto the bean.
 */
 
import java.util.Map;

import org.eclipse.wst.common.frameworks.datamodel.AbstractDataModelOperation;

public class PropertyDataHolder {
	   public AbstractDataModelOperation operation_;
	   public Object transform_;
	   public String key_;
	   public String property_;
	   public String value_;		
	   public Map map_;
}

Back to the top