Interface ITool
- All Known Implementing Classes:
 CharsFromTool, CharsToTool, CmdFileTool, GrepTool, HelpTool, HistoryTool, OutFileTool, TokensTool, Tool
public interface ITool
- 
Method Summary
Modifier and TypeMethodDescriptionbooleanDetermines if a command is accepted by current tool.voidclose()Closes the tool.To gets the tool's argument description.To gets the tool's command name.To gets the tool's help description.voidTo print the detailed help message.voidprocess(String command, String[] args, PrintStream out) Processes the command.booleanstart(String[] args, PrintStream out) Starts the tool. 
- 
Method Details
- 
start
Starts the tool.- Parameters:
 args- The arguments required to start the tool.out- The output channel.- Returns:
 trueif the tool has been started up successfully;falseotherwise.- Throws:
 CommandException
 - 
close
void close()Closes the tool. - 
accept
 - 
process
Processes the command.- Parameters:
 command- The command to be processed.args- The arguments taken by the command.out- The output channel.- Throws:
 CommandException
 - 
printDetailedHelp
To print the detailed help message. - 
getCommandName
 - 
getArgumentDescription
String getArgumentDescription()To gets the tool's argument description.- Returns:
 - The tool's argument description.
 
 - 
getHelpDescription
String getHelpDescription()To gets the tool's help description.- Returns:
 - The tool's help description.
 
 
 -