io.github.llewvallis.commandbuilder.AutoCommandFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of command-builder Show documentation
Show all versions of command-builder Show documentation
A framework for constructing Bukkit commands
The newest version!
package io.github.llewvallis.commandbuilder;
import java.lang.annotation.*;
/**
* Marks a method as being used in conjunction with {@link AutoCommand} as a way to create {@link TopLevelCommand}s and
* {@link CompositeTopLevelCommand}s.
*
* This annotation has no effect, but it is recommended as a form of documentation.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface AutoCommandFactory { }