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

com.redhat.ceylon.compiler.java.metadata.EnumerationReference Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
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 bar();
 * }
 * 
* @author tom */ @Retention(RetentionPolicy.CLASS) @Target(ElementType.METHOD) public @interface EnumerationReference { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy