| |
|
| java.lang.Object henplus.property.PropertyHolder henplus.property.EnumeratedPropertyHolder
All known Subclasses: henplus.property.BooleanPropertyHolder,
EnumeratedPropertyHolder | abstract public class EnumeratedPropertyHolder extends PropertyHolder (Code) | | A PropertyHolder, that can change its values to a fixed set of
values.
|
EnumeratedPropertyHolder | public EnumeratedPropertyHolder(String[] enumeratedValues)(Code) | | create a new EnumeratedPropertyHolder that gets an array of
Strings with possible values of this property.
Parameters: enumeratedValues - the Values this property can take. |
EnumeratedPropertyHolder | public EnumeratedPropertyHolder(Collection values)(Code) | | same with collection as Input.
|
enumeratedPropertyChanged | abstract protected void enumeratedPropertyChanged(int index, String value) throws Exception(Code) | | to be overridden to get informed of the change and veto
it.
Parameters: index - the index of the property that changed Parameters: value - the new value of that property throws: Exception - to veto that change. |
|
|
|