Cleaned up CommandAlias a bit

Dieser Commit ist enthalten in:
zml2008 2011-08-29 14:15:25 -07:00
Ursprung d64fd95173
Commit 93fbad4d82
2 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -1,6 +1,6 @@
// $Id$
/*
* Copyright (C) 2010 sk89q <http://www.sk89q.com>
* Copyright (C) 2011 sk89q <http://www.sk89q.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -30,11 +30,11 @@ import java.lang.annotation.RetentionPolicy;
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface AliasCommand {
public @interface CommandAlias {
/**
*
* @return Raw {@link CommandsManager}-formatted command arg array to run
*/
String[] aliasTo();
String[] value();
}

Datei anzeigen

@ -369,9 +369,9 @@ public abstract class CommandsManager<T> {
} else {
executeMethod(method, args, player, methodArgs, level + 1);
}
} else if (method.isAnnotationPresent(AliasCommand.class)) {
AliasCommand aCmd = method.getAnnotation(AliasCommand.class);
executeMethod(parent, aCmd.aliasTo(), player, methodArgs, level);
} else if (method.isAnnotationPresent(CommandAlias.class)) {
CommandAlias aCmd = method.getAnnotation(CommandAlias.class);
executeMethod(parent, aCmd.value(), player, methodArgs, level);
} else {
Command cmd = method.getAnnotation(Command.class);