From 4f5a96bc8b560dea725fb29e6a03f9817d8eab17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joel=20Borggr=C3=A9n-Franck?= Date: Thu, 9 Aug 2012 17:49:43 +0200 Subject: [PATCH] 7188442: rename java.lang.annotation.ContainerAnnotation to ContainedBy Reviewed-by: darcy, jjg --- .../annotation/{ContainerAnnotation.java => ContainedBy.java} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename jdk/src/share/classes/java/lang/annotation/{ContainerAnnotation.java => ContainedBy.java} (94%) diff --git a/jdk/src/share/classes/java/lang/annotation/ContainerAnnotation.java b/jdk/src/share/classes/java/lang/annotation/ContainedBy.java similarity index 94% rename from jdk/src/share/classes/java/lang/annotation/ContainerAnnotation.java rename to jdk/src/share/classes/java/lang/annotation/ContainedBy.java index ee35e8bdbd8..2449519d9ca 100644 --- a/jdk/src/share/classes/java/lang/annotation/ContainerAnnotation.java +++ b/jdk/src/share/classes/java/lang/annotation/ContainedBy.java @@ -28,7 +28,7 @@ package java.lang.annotation; /** * A meta-annotation to indicate which annotation type should be used * as a container for repeated values of the annotation type modified - * by the {@code ContainerAnnotation} annotation. + * by the {@code ContainedBy} annotation. * * @since 1.8 * @jls 9.6 Annotation Types @@ -37,7 +37,7 @@ package java.lang.annotation; @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) -public @interface ContainerAnnotation { +public @interface ContainedBy { /** * The annotation type to use to store repeated values of another * annotation.