marcel.lang.MarcelSyntaxTreeTransformationClass Maven / Gradle / Ivy
package marcel.lang;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This is an annotation to put on Marcel meta annotations.
* It allows the compiler to know which transformation to apply, based on the classes provided
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface MarcelSyntaxTreeTransformationClass {
String[] value() default {};
Class[] classes() default {};
}