de.hilling.lang.annotations.GenerateLiteral Maven / Gradle / Ivy
package de.hilling.lang.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Activate the Annotation Literal Processor to generate a an implementation for the
* annotated annotation.
*/
@Retention(RetentionPolicy.SOURCE)
@Target(ElementType.TYPE)
public @interface GenerateLiteral {
}