ICommandGroup class abstract

Implemented types

Constructors

ICommandGroup()

Properties

afterHandler AfterHandlerFunction?
Callback executed after executing command
no setterinherited
aliases List<String>
Aliases of CommandEntityAbstract
no setterinherited
beforeHandler PassHandlerFunction?
Executed before executing command. Used to check if command can be executed in current context.
no setterinherited
commandEntities List<ICommandEntity>
no setterinherited
commandNames List<String>
A list of valid command names
no setterinherited
defaultHandler → CommandHandlerAbstract?
Default CommandHandlerAbstract for BasicCommandGroup - it will be executed then no other command from group match
no setter
hashCode int
The hash code for this object.
no setterinherited
name String
Name of CommandEntityAbstract
no setterinherited
parent → CommandEntityAbstract?
Parent of entity
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getFullCommandMatch() String
RegEx matching the fully qualified command name with its parents and all aliases
inherited
isEntityName(String str) bool
Returns true if provided String str is entity name or alias
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
registerCommandEntity(ICommandEntity entity) → void
Registers CommandEntity within context of this instance. Throws error if there is command with same name as provided.
inherited
registerCommandGroup(BasicCommandGroup commandGroup) → void
Registers command as implemented CommandEntityAbstract class
registerDefaultCommand(CommandHandlerFunction commandHandler, {PassHandlerFunction? beforeHandler, AfterHandlerFunction? afterHandler}) → void
Registers default command handler which will be executed if no subcommand is matched to message content
registerSubCommand(String name, CommandHandlerFunction commandHandler, {PassHandlerFunction? beforeHandler, AfterHandlerFunction? afterHandler}) → void
Registers subcommand
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited