Class CommandModel
java.lang.Object
io.github.projectunified.craftcommand.processor.model.CommandModel
Model representing a parsed command or subcommand class.
-
Constructor Summary
ConstructorsConstructorDescriptionCommandModel(com.palantir.javapoet.ClassName className, String packageName, String commandName, List<String> aliases, String description, MethodModel defaultMethod, List<MethodModel> subcommands, List<CommandModel> nestedSubcommands, TypeElement element) Constructs a CommandModel. -
Method Summary
Modifier and TypeMethodDescriptionGets the aliases of the command.com.palantir.javapoet.ClassNameGets the ClassName of the command class.Gets the primary name of the command.Gets the default execution method.Gets the command description.Gets the underlying Java TypeElement of this class.Gets the nested class-level subcommands.Gets the package name of the command class.Gets the method-level subcommands.
-
Constructor Details
-
CommandModel
public CommandModel(com.palantir.javapoet.ClassName className, String packageName, String commandName, List<String> aliases, String description, MethodModel defaultMethod, List<MethodModel> subcommands, List<CommandModel> nestedSubcommands, TypeElement element) Constructs a CommandModel.- Parameters:
className- the class name of the commandpackageName- the package name of the commandcommandName- the primary name of the commandaliases- the command aliasesdescription- the command descriptiondefaultMethod- the default action method model, ornullsubcommands- the subcommands defined as methodsnestedSubcommands- the nested subcommand classeselement- the underlying TypeElement
-
-
Method Details
-
getClassName
public com.palantir.javapoet.ClassName getClassName()Gets the ClassName of the command class.- Returns:
- the class name
-
getPackageName
Gets the package name of the command class.- Returns:
- the package name
-
getCommandName
Gets the primary name of the command.- Returns:
- the command name
-
getAliases
Gets the aliases of the command.- Returns:
- the list of aliases
-
getDescription
Gets the command description.- Returns:
- the description
-
getDefaultMethod
Gets the default execution method.- Returns:
- the default method model, or
nullif none
-
getSubcommands
Gets the method-level subcommands.- Returns:
- the list of subcommands
-
getNestedSubcommands
Gets the nested class-level subcommands.- Returns:
- the list of nested subcommands
-
getElement
Gets the underlying Java TypeElement of this class.- Returns:
- the type element
-