Interface IManCommand
- All Known Implementing Classes:
HelpCommand,ManCommand
public interface IManCommand
Represents 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
Modifier and TypeMethodDescriptionReturns the extended Description of this commandtoMan()Returns a String Representations of the Command and it's extended Description.
-
Method Details
-
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
-