|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.ctdp.rfdynhud.properties.Property
net.ctdp.rfdynhud.properties.EnumProperty<E>
E
- the enum typepublic class EnumProperty<E extends java.lang.Enum<E>>
The EnumProperty
serves for customizing a value from an enum.
Constructor Summary | |
---|---|
EnumProperty(java.lang.String name,
E defaultValue)
|
|
EnumProperty(java.lang.String name,
E defaultValue,
boolean readonly)
|
|
EnumProperty(java.lang.String name,
java.lang.String nameForDisplay,
E defaultValue)
|
|
EnumProperty(java.lang.String name,
java.lang.String nameForDisplay,
E defaultValue,
boolean readonly)
|
Method Summary | |
---|---|
E |
getEnumValue()
Gets the currently selected value. |
E |
getValue()
Gets the current value fo this property. |
void |
loadValue(PropertyLoader loader,
java.lang.String value)
Loads the value from the configuration file. |
protected void |
onKeeperSet()
|
protected void |
onValueChanged(E oldValue,
E newValue)
Invoked when the value has changed. |
boolean |
setEnumValue(E value)
Sets the selected value. |
protected boolean |
setEnumValue(E value,
boolean firstTime)
Sets the selected value. |
void |
setValue(java.lang.Object value)
Sets the new value for this property. |
Methods inherited from class net.ctdp.rfdynhud.properties.Property |
---|
getButtonText, getButtonTooltip, getDocumentationSource, getEditorType, getKeeper, getName, getNameForDisplay, getValueForConfigurationFile, isMatchingKey, isReadOnly, onButtonClicked, quoteValueInConfigurationFile, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public EnumProperty(java.lang.String name, java.lang.String nameForDisplay, E defaultValue, boolean readonly)
name
- the technical name used internally. See Property.getName()
.nameForDisplay
- the name displayed in the editor. See Property.getNameForDisplay()
. If null
is passed, the value of the name parameter is used.defaultValue
- the default valuereadonly
- read only property?public EnumProperty(java.lang.String name, java.lang.String nameForDisplay, E defaultValue)
name
- the technical name used internally. See Property.getName()
.nameForDisplay
- the name displayed in the editor. See Property.getNameForDisplay()
. If null
is passed, the value of the name parameter is used.defaultValue
- the default valuepublic EnumProperty(java.lang.String name, E defaultValue, boolean readonly)
name
- the technical name used internally. See Property.getName()
. 'nameForDisplay' is set to the same value.defaultValue
- the default valuereadonly
- read only property?public EnumProperty(java.lang.String name, E defaultValue)
name
- the technical name used internally. See Property.getName()
. 'nameForDisplay' is set to the same value.defaultValue
- the default valueMethod Detail |
---|
protected void onKeeperSet()
onKeeperSet
in class Property
protected void onValueChanged(E oldValue, E newValue)
oldValue
- the old valuenewValue
- the new valueprotected final boolean setEnumValue(E value, boolean firstTime)
value
- the new valuefirstTime
-
public final boolean setEnumValue(E value)
value
- the new value
public final E getEnumValue()
public void setValue(java.lang.Object value)
setValue
in class Property
value
- the new valuepublic E getValue()
getValue
in class Property
public void loadValue(PropertyLoader loader, java.lang.String value)
loadValue
in class Property
loader
- the loadervalue
- the value to load
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |