Package org.scijava.widget
Interface NumberWidget<U>
-
- All Superinterfaces:
Comparable<Prioritized>,Contextual,HasPluginInfo,Identifiable,InputWidget<Number,U>,Locatable,Logged,Prioritized,RichPlugin,SciJavaPlugin,Typed<WidgetModel>,TypedPlugin<WidgetModel>,UIComponent<U>,Versioned,WrapperPlugin<WidgetModel>
public interface NumberWidget<U> extends InputWidget<Number,U>
Widget interface for number choosers.- Author:
- Curtis Rueden
-
-
Field Summary
Fields Modifier and Type Field Description static StringSCROLL_BAR_STYLEWidget style for scroll bar with spinner.static StringSLIDER_STYLEWidget style for slider with spinner.static StringSPINNER_STYLEWidget style for spinner only.
-
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
-
SLIDER_STYLE
static final String SLIDER_STYLE
Widget style for slider with spinner.- See Also:
Parameter.style(), Constant Field Values
-
SPINNER_STYLE
static final String SPINNER_STYLE
Widget style for spinner only.- See Also:
Parameter.style(), Constant Field Values
-
SCROLL_BAR_STYLE
static final String SCROLL_BAR_STYLE
Widget style for scroll bar with spinner.- See Also:
Parameter.style(), Constant Field Values
-
-