| |
|
| java.lang.Object org.netbeans.modules.vmd.api.properties.GroupValue
GroupValue | final public class GroupValue (Code) | | This class provide support to handle more that one DesignComponent property
in the single custom property editor. It can store more that one value of the property
in the map of the proprties values. This class is used in the GroupPropertyEditor custom property editor.
|
Constructor Summary | |
public | GroupValue(List<String> propertyNames) Creates GroupValue instance with given list of DesignComponent properties
names list. |
GroupValue | public GroupValue(List<String> propertyNames)(Code) | | Creates GroupValue instance with given list of DesignComponent properties
names list.
Parameters: propertyNames - list of properites names. |
getPropertyNames | public String[] getPropertyNames()(Code) | | Returns array of property names available for this GroupValue.
|
getValue | public Object getValue(String propertyName)(Code) | | Returns value for given Design Component property name.
Parameters: propertyName - DesignComponent property name property value |
putValue | public void putValue(String propertyName, Object value)(Code) | | Put value into the property map of values.
Parameters: propertyName - used as a key in the property value map Parameters: value - property value |
|
|
|