Package adams.core.io.lister
Interface RelativeDirectoryLister
-
- All Superinterfaces:
DirectoryLister
,LoggingLevelHandler
,LoggingSupporter
,Stoppable
,StoppableWithFeedback
- All Known Implementing Classes:
LocalDirectoryLister
public interface RelativeDirectoryLister extends DirectoryLister
Interface for recrusive directory listers.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getUseRelativePaths()
Returns whether to output relative paths.void
setUseRelativePaths(boolean value)
Sets whether to output relative paths.-
Methods inherited from interface adams.core.io.lister.DirectoryLister
getListDirs, getListFiles, getMaxItems, getRegExp, getSortDescending, getSorting, getWatchDir, hasParentDirectory, isLocal, list, listObjects, newDirectory, newDirectory, setListDirs, setListFiles, setMaxItems, setRegExp, setSortDescending, setSorting, setWatchDir
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel, setLoggingLevel
-
Methods inherited from interface adams.core.logging.LoggingSupporter
getLogger, isLoggingEnabled
-
Methods inherited from interface adams.core.Stoppable
stopExecution
-
Methods inherited from interface adams.core.StoppableWithFeedback
isStopped
-
-
-
-
Method Detail
-
setUseRelativePaths
void setUseRelativePaths(boolean value)
Sets whether to output relative paths.- Parameters:
value
- true if to output relative paths
-
getUseRelativePaths
boolean getUseRelativePaths()
Returns whether to output relative paths.- Returns:
- true if to output relative paths
-
-