Package | Description |
---|---|
edu.wisc.ssec.mcidasv.startupmanager.options |
Modifier and Type | Field and Description |
---|---|
private OptionMaster.Visibility |
AbstractOption.optionVisibility |
Modifier and Type | Method and Description |
---|---|
OptionMaster.Visibility |
Option.getOptionVisibility() |
OptionMaster.Visibility |
AbstractOption.getOptionVisibility()
Returns whether or not this option represents a visible UI element.
|
static OptionMaster.Visibility |
OptionMaster.Visibility.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionMaster.Visibility[] |
OptionMaster.Visibility.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
List<Option> |
OptionMaster.optionsByVisibility(Collection<OptionMaster.Visibility> visibilities)
Returns the
Options that match the given levels of
visibility . |
Constructor and Description |
---|
AbstractOption(String id,
String label,
OptionMaster.Type optionType,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility)
Creates an option that can hold a specified sort of data and that
applies to a given platform.
|
BooleanOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
DirectoryOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
FileOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform platform,
OptionMaster.Visibility visibility)
Create a new "file option" that allows the user to select
a file.
|
LoggerLevelOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility)
Create a startup option that allows the user to manipulate the global
McIDAS-V logging level.
|
MemoryOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
SliderOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility) |
TextOption(String id,
String label,
String defaultValue,
OptionMaster.OptionPlatform optionPlatform,
OptionMaster.Visibility optionVisibility)
Create a startup option that allows the user to supply arbitrary text.
|