blob: 048b6e785b629e65443f88cb4d76d797d0b519be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package bjc.utils.cli;
/** Implementation of a help topic that doesn't exist or isn't provided.
*
* @author ben */
public class NullHelp implements CommandHelp {
@Override
public String getDescription() {
return "No description provided";
}
@Override
public String getSummary() {
return "No summary provided";
}
}
|