@@ -54,14 +54,14 @@ public class ClassNode extends ClassVisitor {
5454 public int version ;
5555
5656 /**
57- * The class's access flags (see {@link org.objectweb .asm.Opcodes}). This
57+ * The class's access flags (see {@link scala.tools .asm.Opcodes}). This
5858 * field also indicates if the class is deprecated.
5959 */
6060 public int access ;
6161
6262 /**
6363 * The internal name of the class (see
64- * {@link org.objectweb .asm.Type#getInternalName() getInternalName}).
64+ * {@link scala.tools .asm.Type#getInternalName() getInternalName}).
6565 */
6666 public String name ;
6767
@@ -72,15 +72,15 @@ public class ClassNode extends ClassVisitor {
7272
7373 /**
7474 * The internal of name of the super class (see
75- * {@link org.objectweb .asm.Type#getInternalName() getInternalName}). For
75+ * {@link scala.tools .asm.Type#getInternalName() getInternalName}). For
7676 * interfaces, the super class is {@link Object}. May be <tt>null</tt>, but
7777 * only for the {@link Object} class.
7878 */
7979 public String superName ;
8080
8181 /**
8282 * The internal names of the class's interfaces (see
83- * {@link org.objectweb .asm.Type#getInternalName() getInternalName}). This
83+ * {@link scala.tools .asm.Type#getInternalName() getInternalName}). This
8484 * list is a list of {@link String} objects.
8585 */
8686 public List <String > interfaces ;
@@ -119,7 +119,7 @@ public class ClassNode extends ClassVisitor {
119119 * The runtime visible annotations of this class. This list is a list of
120120 * {@link AnnotationNode} objects. May be <tt>null</tt>.
121121 *
122- * @associates org.objectweb .asm.tree.AnnotationNode
122+ * @associates scala.tools .asm.tree.AnnotationNode
123123 * @label visible
124124 */
125125 public List <AnnotationNode > visibleAnnotations ;
@@ -128,7 +128,7 @@ public class ClassNode extends ClassVisitor {
128128 * The runtime invisible annotations of this class. This list is a list of
129129 * {@link AnnotationNode} objects. May be <tt>null</tt>.
130130 *
131- * @associates org.objectweb .asm.tree.AnnotationNode
131+ * @associates scala.tools .asm.tree.AnnotationNode
132132 * @label invisible
133133 */
134134 public List <AnnotationNode > invisibleAnnotations ;
@@ -137,7 +137,7 @@ public class ClassNode extends ClassVisitor {
137137 * The runtime visible type annotations of this class. This list is a list
138138 * of {@link TypeAnnotationNode} objects. May be <tt>null</tt>.
139139 *
140- * @associates org.objectweb .asm.tree.TypeAnnotationNode
140+ * @associates scala.tools .asm.tree.TypeAnnotationNode
141141 * @label visible
142142 */
143143 public List <TypeAnnotationNode > visibleTypeAnnotations ;
@@ -146,7 +146,7 @@ public class ClassNode extends ClassVisitor {
146146 * The runtime invisible type annotations of this class. This list is a list
147147 * of {@link TypeAnnotationNode} objects. May be <tt>null</tt>.
148148 *
149- * @associates org.objectweb .asm.tree.TypeAnnotationNode
149+ * @associates scala.tools .asm.tree.TypeAnnotationNode
150150 * @label invisible
151151 */
152152 public List <TypeAnnotationNode > invisibleTypeAnnotations ;
@@ -155,31 +155,31 @@ public class ClassNode extends ClassVisitor {
155155 * The non standard attributes of this class. This list is a list of
156156 * {@link Attribute} objects. May be <tt>null</tt>.
157157 *
158- * @associates org.objectweb .asm.Attribute
158+ * @associates scala.tools .asm.Attribute
159159 */
160160 public List <Attribute > attrs ;
161161
162162 /**
163163 * Informations about the inner classes of this class. This list is a list
164164 * of {@link InnerClassNode} objects.
165165 *
166- * @associates org.objectweb .asm.tree.InnerClassNode
166+ * @associates scala.tools .asm.tree.InnerClassNode
167167 */
168168 public List <InnerClassNode > innerClasses ;
169169
170170 /**
171171 * The fields of this class. This list is a list of {@link FieldNode}
172172 * objects.
173173 *
174- * @associates org.objectweb .asm.tree.FieldNode
174+ * @associates scala.tools .asm.tree.FieldNode
175175 */
176176 public List <FieldNode > fields ;
177177
178178 /**
179179 * The methods of this class. This list is a list of {@link MethodNode}
180180 * objects.
181181 *
182- * @associates org.objectweb .asm.tree.MethodNode
182+ * @associates scala.tools .asm.tree.MethodNode
183183 */
184184 public List <MethodNode > methods ;
185185
0 commit comments