Class ValidateCommand
- java.lang.Object
-
- software.amazon.smithy.cli.commands.ValidateCommand
-
-
Constructor Summary
Constructors Constructor Description ValidateCommand()
-
Method Summary
Modifier and Type Method Description voidexecute(Arguments arguments, java.lang.ClassLoader classLoader)Executes the command using the provided arguments.java.lang.StringgetName()Gets the name of the command.ParsergetParser()Gets the parser of the command.java.lang.StringgetSummary()Gets a short summary of the command that's shown in the main help.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:CommandGets the name of the command.The returned name should contain no spaces or special characters.
-
getSummary
public java.lang.String getSummary()
Description copied from interface:CommandGets a short summary of the command that's shown in the main help.- Specified by:
getSummaryin interfaceCommand- Returns:
- Returns the short help description.
-
getParser
public Parser getParser()
Description copied from interface:CommandGets the parser of the command.
-
-