Package adams.core.management
Interface WorkingDirectoryHandler
-
- All Superinterfaces:
Destroyable
,OptionHandler
public interface WorkingDirectoryHandler extends OptionHandler
Interface for classes that manage a working directory.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getWorkingDirectory()
Returns the current working directory for the command.void
setWorkingDirectory(String value)
Sets the current working directory for the command.String
workingDirectoryTipText()
Returns the tip text for this property.-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
-
-
-
Method Detail
-
setWorkingDirectory
void setWorkingDirectory(String value)
Sets the current working directory for the command.- Parameters:
value
- the directory, ignored if empty
-
getWorkingDirectory
String getWorkingDirectory()
Returns the current working directory for the command.- Returns:
- the directory, ignored if empty
-
workingDirectoryTipText
String workingDirectoryTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-