7188442: rename java.lang.annotation.ContainerAnnotation to ContainedBy

Reviewed-by: darcy, jjg
This commit is contained in:
Joel Borggrén-Franck 2012-08-09 17:49:43 +02:00
parent 790c4cdcec
commit 4f5a96bc8b

View File

@ -28,7 +28,7 @@ package java.lang.annotation;
/** /**
* A meta-annotation to indicate which annotation type should be used * A meta-annotation to indicate which annotation type should be used
* as a container for repeated values of the annotation type modified * as a container for repeated values of the annotation type modified
* by the {@code ContainerAnnotation} annotation. * by the {@code ContainedBy} annotation.
* *
* @since 1.8 * @since 1.8
* @jls 9.6 Annotation Types * @jls 9.6 Annotation Types
@ -37,7 +37,7 @@ package java.lang.annotation;
@Documented @Documented
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE) @Target(ElementType.ANNOTATION_TYPE)
public @interface ContainerAnnotation { public @interface ContainedBy {
/** /**
* The annotation type to use to store repeated values of another * The annotation type to use to store repeated values of another
* annotation. * annotation.