Package org.scijava.widget
Interface FileListWidget<U>
-
- All Superinterfaces:
Comparable<Prioritized>,Contextual,HasPluginInfo,Identifiable,InputWidget<File[],U>,Locatable,Logged,Prioritized,RichPlugin,SciJavaPlugin,Typed<WidgetModel>,TypedPlugin<WidgetModel>,UIComponent<U>,Versioned,WrapperPlugin<WidgetModel>
public interface FileListWidget<U> extends InputWidget<File[],U>
-
-
Field Summary
Fields Modifier and Type Field Description static StringDIRECTORIES_ONLYWidget style to allow directory selection onlystatic StringFILES_AND_DIRECTORIESWidget style to allow selection of both files and directoriesstatic StringFILES_ONLYWidget style to allow file selection 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
-
FILES_ONLY
static final String FILES_ONLY
Widget style to allow file selection only- See Also:
Parameter.style(), Constant Field Values
-
DIRECTORIES_ONLY
static final String DIRECTORIES_ONLY
Widget style to allow directory selection only- See Also:
Parameter.style(), Constant Field Values
-
FILES_AND_DIRECTORIES
static final String FILES_AND_DIRECTORIES
Widget style to allow selection of both files and directories- See Also:
Parameter.style(), Constant Field Values
-
-