cn.nukkit.command.simple.Arguments Maven / Gradle / Ivy
package cn.nukkit.command.simple;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author Tee7even
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Arguments {
int min() default 0;
int max() default 0;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy