com.redhat.ceylon.compiler.java.metadata.EnumerationReference Maven / Gradle / Ivy
package com.redhat.ceylon.compiler.java.metadata;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation for methods of annotation types, encoded as a java.lang.Class,
* that are actually a reference to an anonymous class that's a case of an enumerated type.
* This is not used for booleans though.
*
* @interface Foo$annotation {
* @.com.redhat.ceylon.compiler.java.metadata.EnumerationReference
* public abstract .java.lang.Class extends Bar> bar();
* }
*
* @author tom
*/
@Retention(RetentionPolicy.CLASS)
@Target(ElementType.METHOD)
public @interface EnumerationReference {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy