src/share/classes/com/sun/tools/javac/code/Symtab.java

Print this page

        

@@ -145,10 +145,11 @@
     public final Type comparableType;
     public final Type arraysType;
     public final Type iterableType;
     public final Type iteratorType;
     public final Type annotationTargetType;
+    public final Type annotationContainerType;
     public final Type overrideType;
     public final Type retentionType;
     public final Type deprecatedType;
     public final Type suppressWarningsType;
     public final Type inheritedType;

@@ -462,10 +463,11 @@
         iterableType = target.hasIterable()
             ? enterClass("java.lang.Iterable")
             : enterClass("java.util.Collection");
         iteratorType = enterClass("java.util.Iterator");
         annotationTargetType = enterClass("java.lang.annotation.Target");
+        annotationContainerType = enterClass("java.lang.annotation.ContainerAnnotation");
         overrideType = enterClass("java.lang.Override");
         retentionType = enterClass("java.lang.annotation.Retention");
         deprecatedType = enterClass("java.lang.Deprecated");
         suppressWarningsType = enterClass("java.lang.SuppressWarnings");
         inheritedType = enterClass("java.lang.annotation.Inherited");