mirror of
https://e.coding.net/circlecloud/YumCore.git
synced 2024-11-21 01:38:51 +00:00
feat: 命令添加多重注册
Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
parent
aa324f54db
commit
bf4c508bc5
@ -83,7 +83,7 @@ public class CommandManager implements TabExecutor {
|
||||
* @param executor
|
||||
* 命令执行类
|
||||
*/
|
||||
public CommandManager(final String name, final CommandExecutor executor) {
|
||||
public CommandManager(final String name, final CommandExecutor... executor) {
|
||||
this(name);
|
||||
register(executor);
|
||||
}
|
||||
@ -126,13 +126,15 @@ public class CommandManager implements TabExecutor {
|
||||
* @param clazz
|
||||
* 子命令处理类
|
||||
*/
|
||||
public void register(final CommandExecutor clazz) {
|
||||
final Method[] methods = clazz.getClass().getDeclaredMethods();
|
||||
for (final Method method : methods) {
|
||||
if (registerCommand(method, clazz)) {
|
||||
continue;
|
||||
public void register(final CommandExecutor... clazzs) {
|
||||
for (final CommandExecutor clazz : clazzs) {
|
||||
final Method[] methods = clazz.getClass().getDeclaredMethods();
|
||||
for (final Method method : methods) {
|
||||
if (registerCommand(method, clazz)) {
|
||||
continue;
|
||||
}
|
||||
registerTab(method, clazz);
|
||||
}
|
||||
registerTab(method, clazz);
|
||||
}
|
||||
help = new CommandHelp(cmds);
|
||||
buildCmdNameCache();
|
||||
|
Loading…
Reference in New Issue
Block a user