Format code

This commit is contained in:
2022-02-06 23:59:26 -06:00
parent cb3a6cc391
commit 917775e7e7
11 changed files with 45 additions and 13 deletions

View File

@ -11,24 +11,28 @@ public @interface CommandParameters
{
/**
* The name
*
* @return Name of the command
*/
String name();
/**
* The description
*
* @return Description of the command
*/
String description() default "";
/**
* The usage (optional)
*
* @return The usage of the command
*/
String usage() default "/<command>";
/**
* The aliases (optional)
*
* @return The aliases of the command
*/
String aliases() default "";

View File

@ -13,6 +13,7 @@ public @interface CommandPermissions
{
/**
* Minimum rank required
*
* @return Minimum rank required for the command
* @see Rank
*/
@ -20,6 +21,7 @@ public @interface CommandPermissions
/**
* Required command source
*
* @return The required command source of the command
* @see RequiredCommandSource
*/
@ -27,6 +29,7 @@ public @interface CommandPermissions
/**
* The permission
*
* @return Permission of the command
*/
String permission() default ""; // No idea what to put here