
com.freya02.botcommands.api.commands.prefixed.annotations.Description Maven / Gradle / Ivy
package com.freya02.botcommands.api.commands.prefixed.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Use this annotation to specify the global description of the current command class.
*
This is only used for the help command.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface Description {
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy