Package VASSAL.configure
Class StringEnumConfigurer
java.lang.Object
VASSAL.configure.Configurer
VASSAL.configure.StringEnumConfigurer
- Direct Known Subclasses:
DoActionButton.LoopTypeConfig
A Configurer that returns a String from among a list of possible values
-
Field Summary
Fields inherited from class VASSAL.configure.Configurer
changeSupport, frozen, hint, key, LIST_ENTRY_HIGHLIGHT_COLOR, name, NAME_PROPERTY, noUpdate, value
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetBox()
GUI interface for setting the option in an editing windowString[]
boolean
isValidValue(Object o)
void
void
setEditable(boolean enabled)
void
setEnabled(boolean enabled)
void
setLabelVisibile(boolean visible)
Show/Hide the internal label maintained by this Configurer.void
setValidValues(String[] s)
void
Set the Object valuevoid
Set the Object value from a StringMethods inherited from class VASSAL.configure.Configurer
addFocusListener, addPropertyChangeListener, fireUpdate, getHint, getKey, getName, getScreenSize, getValue, isFrozen, isHighlighted, removeFocusListener, removePropertyChangeListener, repack, repack, requestFocus, setFrozen, setHighlighted, setHint, setHintKey, setName
-
Constructor Details
-
StringEnumConfigurer
-
-
Method Details
-
getBox
-
setBox
-
getControls
Description copied from class:Configurer
GUI interface for setting the option in an editing window- Specified by:
getControls
in classConfigurer
-
setEnabled
public void setEnabled(boolean enabled) -
setEditable
public void setEditable(boolean enabled) -
isValidValue
-
getValidValues
-
setValidValues
-
setValue
Description copied from class:Configurer
Set the Object value- Overrides:
setValue
in classConfigurer
-
getValueString
- Specified by:
getValueString
in classConfigurer
- Returns:
- a String representation of the Object value
-
setValue
Description copied from class:Configurer
Set the Object value from a String- Specified by:
setValue
in classConfigurer
-
setLabelVisibile
public void setLabelVisibile(boolean visible)Description copied from class:Configurer
Show/Hide the internal label maintained by this Configurer. It is up to individual Configurers to track and hide the label (if they can). This method is currently only utilized by the Preference configsPrefsEditor.addOption(String, Configurer)
to extract an existing label in a configurer, display correctly aligned and suppress the original label. This keeps compatibility with custom module code setting up preferences. This method only needs to be implemented in Configurers that are added as preferences.- Overrides:
setLabelVisibile
in classConfigurer
- Parameters:
visible
- Hide label if true
-