
com.github.fhtw.swp.tutorium.command.InvokeCommand Maven / Gradle / Ivy
package com.github.fhtw.swp.tutorium.command;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation to be used as a marker for a method that allows the invocation of a command.
*
* @see Invoker
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface InvokeCommand {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy