Package org.scijava.widget
Interface ChoiceWidget<U>
-
- All Superinterfaces:
Comparable<Prioritized>,Contextual,HasPluginInfo,Identifiable,InputWidget<String,U>,Locatable,Logged,Prioritized,RichPlugin,SciJavaPlugin,Typed<WidgetModel>,TypedPlugin<WidgetModel>,UIComponent<U>,Versioned,WrapperPlugin<WidgetModel>
public interface ChoiceWidget<U> extends InputWidget<String,U>
Widget interface for multiple choice selectors.- Author:
- Curtis Rueden
-
-
Field Summary
Fields Modifier and Type Field Description static StringLIST_BOX_STYLEWidget style for list boxes.static StringRADIO_BUTTON_HORIZONTAL_STYLEWidget style for radio buttons arranged on a single line.static StringRADIO_BUTTON_VERTICAL_STYLEWidget style for radio buttons arranged one per line.
-
Method Summary
-
Methods inherited from interface org.scijava.Contextual
context, getContext, setContext
-
Methods inherited from interface org.scijava.plugin.HasPluginInfo
getInfo, setInfo
-
Methods inherited from interface org.scijava.widget.InputWidget
get, getType, getValue, isLabeled, isMessage, refreshWidget, set, supports, updateModel
-
Methods inherited from interface org.scijava.Locatable
getLocation
-
Methods inherited from interface org.scijava.Prioritized
compareTo, getPriority, setPriority
-
Methods inherited from interface org.scijava.plugin.RichPlugin
getIdentifier, log
-
Methods inherited from interface org.scijava.widget.UIComponent
getComponent, getComponentType
-
Methods inherited from interface org.scijava.Versioned
getVersion
-
-
-
-
Field Detail
-
LIST_BOX_STYLE
static final String LIST_BOX_STYLE
Widget style for list boxes.- See Also:
Parameter.style(), Constant Field Values
-
RADIO_BUTTON_HORIZONTAL_STYLE
static final String RADIO_BUTTON_HORIZONTAL_STYLE
Widget style for radio buttons arranged on a single line.- See Also:
Parameter.style(), Constant Field Values
-
RADIO_BUTTON_VERTICAL_STYLE
static final String RADIO_BUTTON_VERTICAL_STYLE
Widget style for radio buttons arranged one per line.- See Also:
Parameter.style(), Constant Field Values
-
-