Package net.sf.freecol.client.gui.option
Class TextOptionUI
- java.lang.Object
-
- net.sf.freecol.client.gui.option.OptionUI<TextOption>
-
- net.sf.freecol.client.gui.option.TextOptionUI
-
- All Implemented Interfaces:
OptionUpdater
public final class TextOptionUI extends OptionUI<TextOption>
This class provides visualization for aTextOption
in order to enable values to be both seen and changed.
-
-
Field Summary
Fields Modifier and Type Field Description private javax.swing.JTextField
box
-
Constructor Summary
Constructors Constructor Description TextOptionUI(TextOption option, boolean editable)
Creates a newTextOptionUI
for the givenTextOption
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.swing.JTextField
getComponent()
Get theComponent
used to set the value of the Option.void
reset()
Reset the value of the UI's component from the Option.void
updateOption()
Update the value of the Option from the UI's component.-
Methods inherited from class net.sf.freecol.client.gui.option.OptionUI
getJLabel, getListCellRenderer, getOption, getOptionUI, initialize, isEditable, setEditable, setEnabler, setLabel, setOption
-
-
-
-
Constructor Detail
-
TextOptionUI
public TextOptionUI(TextOption option, boolean editable)
Creates a newTextOptionUI
for the givenTextOption
.- Parameters:
option
- TheTextOption
to make a user interface for.editable
- boolean whether user can modify the setting.
-
-
Method Detail
-
getComponent
public javax.swing.JTextField getComponent()
Get theComponent
used to set the value of the Option.- Specified by:
getComponent
in classOptionUI<TextOption>
- Returns:
- a
JComponent
value
-
updateOption
public void updateOption()
Update the value of the Option from the UI's component.- Specified by:
updateOption
in interfaceOptionUpdater
- Specified by:
updateOption
in classOptionUI<TextOption>
-
reset
public void reset()
Reset the value of the UI's component from the Option.- Specified by:
reset
in interfaceOptionUpdater
- Specified by:
reset
in classOptionUI<TextOption>
-
-