Package org.scijava.widget
Interface TextWidget<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 TextWidget<U> extends InputWidget<String,U>
Widget interface for text fields and areas.- Author:
- Curtis Rueden
-
-
Field Summary
Fields Modifier and Type Field Description static StringAREA_STYLEWidget style for text areas.static StringFIELD_STYLEWidget style for text fields.static StringPASSWORD_STYLEWidget style for password fields.
-
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
-
FIELD_STYLE
static final String FIELD_STYLE
Widget style for text fields.- See Also:
Parameter.style(), Constant Field Values
-
AREA_STYLE
static final String AREA_STYLE
Widget style for text areas.- See Also:
Parameter.style(), Constant Field Values
-
PASSWORD_STYLE
static final String PASSWORD_STYLE
Widget style for password fields.- See Also:
Parameter.style(), Constant Field Values
-
-