You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
948 B
50 lines
948 B
/*
|
|
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang.annotation;
|
|
|
|
/**
|
|
* The annotation type {@code java.lang.annotation.Repeatable} is
|
|
* used to indicate that the annotation type whose declaration it
|
|
* (meta-)annotates is <em>repeatable</em>. The value of
|
|
* {@code @Repeatable} indicates the <em>containing annotation
|
|
* type</em> for the repeatable annotation type.
|
|
*
|
|
* @since 1.8
|
|
* @jls 9.6 Annotation Types
|
|
* @jls 9.7 Annotations
|
|
*/
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.ANNOTATION_TYPE)
|
|
public @interface Repeatable {
|
|
/**
|
|
* Indicates the <em>containing annotation type</em> for the
|
|
* repeatable annotation type.
|
|
* @return the containing annotation type
|
|
*/
|
|
Class<? extends Annotation> value();
|
|
}
|