Interface IManCommand
-
- All Known Implementing Classes:
HelpCommand,ManCommand
public interface IManCommandRepresents a Command that, aside the normal command description provides an extended Description similar to the output of the Linux man command- Version:
- 1.0.0
- Author:
- Lukas Prediger(Chase)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExtendedDescription()Returns the extended Description of this commandStringtoMan()Returns a String Representations of the Command and it's extended Description.
-
-
-
Method Detail
-
getExtendedDescription
String getExtendedDescription()
Returns the extended Description of this command- Returns:
- the extendedDescription
-
toMan
String toMan()
Returns a String Representations of the Command and it's extended Description.- Returns:
- a String representing the Command and it's extended Description
-
-