@Retention(value=RUNTIME) @Target(value=METHOD) public @interface Command
The annotation Command is used to declare a command. Please note that each command with a similar name will also be published as a command.
Example : If test is declared as a command : \@Command void test(){}; Test(String) will also be available as a command : void test(String param1){};
Copyright © 2012-2013 ADELE Research Group. All Rights Reserved.