blob: 3896b228f57b2b05a8528788ae47cd5f59026106 [file] [log] [blame]
package java.lang.annotation;
import java.lang.annotation.Retention;
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Retention {
RetentionPolicy value();
}