All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.llewvallis.commandbuilder.ExecuteCommand Maven / Gradle / Ivy

The newest version!
package io.github.llewvallis.commandbuilder;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * A marker annotation used by {@link ReflectionCommandCallback} to deduce which method should be invoked when the
 * command is parsed.
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExecuteCommand { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy