Package org.scijava.io
Interface RecentFileService
-
- All Superinterfaces:
Comparable<Prioritized>,Contextual,Disposable,HasPluginInfo,Identifiable,Initializable,Locatable,Logged,Prioritized,RichPlugin,SciJavaPlugin,SciJavaService,Service,Versioned
- All Known Implementing Classes:
DefaultRecentFileService
public interface RecentFileService extends SciJavaService
Interface for services that manage the Recently Used Files menu.- Author:
- Grant Harris, Curtis Rueden
-
-
Field Summary
Fields Modifier and Type Field Description static intMAX_FILES_SHOWN
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(String path)Adds or refreshes a path on the list of recent files.voidclear()Clears the list of recent files.List<String>getRecentFiles()Gets the list of recent files.booleanremove(String path)Removes a path from the list of recent files.-
Methods inherited from interface org.scijava.Contextual
context, getContext, setContext
-
Methods inherited from interface org.scijava.Disposable
dispose
-
Methods inherited from interface org.scijava.plugin.HasPluginInfo
getInfo, setInfo
-
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.service.Service
initialize, registerEventHandlers
-
Methods inherited from interface org.scijava.Versioned
getVersion
-
-
-
-
Field Detail
-
MAX_FILES_SHOWN
static final int MAX_FILES_SHOWN
- See Also:
- Constant Field Values
-
-