public class TextOption extends AbstractOption
| Constructor and Description |
|---|
TextOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
| Modifier and Type | Method and Description |
|---|---|
JComponent |
getComponent()
Returns the GUI component that represents the option.
|
String |
getValue()
Returns the value of the option.
|
void |
setValue(String newValue)
Forces the value of the option to the data specified.
|
String |
toString()
Friendly string representation of the option.
|
fromPrefsFormat, getLabel, getOptionId, getOptionPlatform, getOptionType, getOptionVisibility, onValidPlatform, toPrefsFormatpublic TextOption(String id, String label, String defaultValue, OptionMaster.OptionPlatform optionPlatform, OptionMaster.Visibility optionVisibility)
public JComponent getComponent()
AbstractOptionBooleanOptions are represented by a JCheckBox, while
TextOptions appear as a JTextField.getComponent in interface OptiongetComponent in class AbstractOptionpublic String getValue()
AbstractOptionBooleanOptions
return either "0" or "1".getValue in interface OptiongetValue in class AbstractOptionpublic void setValue(String newValue)
AbstractOptionBooleanOptions accept either "0", or "1".setValue in interface OptionsetValue in class AbstractOptionnewValue - New value to use.public String toString()
AbstractOptiontoString in interface OptiontoString in class AbstractOptiontoString(),
BooleanOption.toString()