Skip to content
This repository was archived by the owner on Feb 23, 2018. It is now read-only.

Commit 1d89653

Browse files
committed
1 parent fc7c067 commit 1d89653

20 files changed

+122
-122
lines changed

src/main/java/scala/tools/asm/Label.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public class Label {
111111
* Field used to associate user information to a label. Warning: this field
112112
* is used by the ASM tree package. In order to use it with the ASM tree
113113
* package you must override the
114-
* {@link org.objectweb.asm.tree.MethodNode#getLabelNode} method.
114+
* {@link scala.tools.asm.tree.MethodNode#getLabelNode} method.
115115
*/
116116
public Object info;
117117

src/main/java/scala/tools/asm/signature/SignatureReader.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ public SignatureReader(final String signature) {
6060
* constructor (see {@link #SignatureReader(String) SignatureReader}). This
6161
* method is intended to be called on a {@link SignatureReader} that was
6262
* created using a <i>ClassSignature</i> (such as the <code>signature</code>
63-
* parameter of the {@link org.objectweb.asm.ClassVisitor#visit
63+
* parameter of the {@link scala.tools.asm.ClassVisitor#visit
6464
* ClassVisitor.visit} method) or a <i>MethodTypeSignature</i> (such as the
6565
* <code>signature</code> parameter of the
66-
* {@link org.objectweb.asm.ClassVisitor#visitMethod
66+
* {@link scala.tools.asm.ClassVisitor#visitMethod
6767
* ClassVisitor.visitMethod} method).
6868
*
6969
* @param v
@@ -119,8 +119,8 @@ public void accept(final SignatureVisitor v) {
119119
* method is intended to be called on a {@link SignatureReader} that was
120120
* created using a <i>FieldTypeSignature</i>, such as the
121121
* <code>signature</code> parameter of the
122-
* {@link org.objectweb.asm.ClassVisitor#visitField ClassVisitor.visitField}
123-
* or {@link org.objectweb.asm.MethodVisitor#visitLocalVariable
122+
* {@link scala.tools.asm.ClassVisitor#visitField ClassVisitor.visitField}
123+
* or {@link scala.tools.asm.MethodVisitor#visitLocalVariable
124124
* MethodVisitor.visitLocalVariable} methods.
125125
*
126126
* @param v

src/main/java/scala/tools/asm/tree/AbstractInsnNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public abstract class AbstractInsnNode {
134134
* number nodes). This list is a list of {@link TypeAnnotationNode} objects.
135135
* May be <tt>null</tt>.
136136
*
137-
* @associates org.objectweb.asm.tree.TypeAnnotationNode
137+
* @associates scala.tools.asm.tree.TypeAnnotationNode
138138
* @label visible
139139
*/
140140
public List<TypeAnnotationNode> visibleTypeAnnotations;
@@ -145,7 +145,7 @@ public abstract class AbstractInsnNode {
145145
* number nodes). This list is a list of {@link TypeAnnotationNode} objects.
146146
* May be <tt>null</tt>.
147147
*
148-
* @associates org.objectweb.asm.tree.TypeAnnotationNode
148+
* @associates scala.tools.asm.tree.TypeAnnotationNode
149149
* @label invisible
150150
*/
151151
public List<TypeAnnotationNode> invisibleTypeAnnotations;

src/main/java/scala/tools/asm/tree/AnnotationNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class AnnotationNode extends AnnotationVisitor {
5252
* as two consecutive elements in the list. The name is a {@link String},
5353
* and the value may be a {@link Byte}, {@link Boolean}, {@link Character},
5454
* {@link Short}, {@link Integer}, {@link Long}, {@link Float},
55-
* {@link Double}, {@link String} or {@link org.objectweb.asm.Type}, or an
55+
* {@link Double}, {@link String} or {@link scala.tools.asm.Type}, or an
5656
* two elements String array (for enumeration values), a
5757
* {@link AnnotationNode}, or a {@link List} of values of one of the
5858
* preceding types. The list may be <tt>null</tt> if there is no name value

src/main/java/scala/tools/asm/tree/ClassNode.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -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

src/main/java/scala/tools/asm/tree/FieldInsnNode.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class FieldInsnNode extends AbstractInsnNode {
4343

4444
/**
4545
* The internal name of the field's owner class (see
46-
* {@link org.objectweb.asm.Type#getInternalName() getInternalName}).
46+
* {@link scala.tools.asm.Type#getInternalName() getInternalName}).
4747
*/
4848
public String owner;
4949

@@ -53,7 +53,7 @@ public class FieldInsnNode extends AbstractInsnNode {
5353
public String name;
5454

5555
/**
56-
* The field's descriptor (see {@link org.objectweb.asm.Type}).
56+
* The field's descriptor (see {@link scala.tools.asm.Type}).
5757
*/
5858
public String desc;
5959

@@ -65,12 +65,12 @@ public class FieldInsnNode extends AbstractInsnNode {
6565
* opcode must be GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.
6666
* @param owner
6767
* the internal name of the field's owner class (see
68-
* {@link org.objectweb.asm.Type#getInternalName()
68+
* {@link scala.tools.asm.Type#getInternalName()
6969
* getInternalName}).
7070
* @param name
7171
* the field's name.
7272
* @param desc
73-
* the field's descriptor (see {@link org.objectweb.asm.Type}).
73+
* the field's descriptor (see {@link scala.tools.asm.Type}).
7474
*/
7575
public FieldInsnNode(final int opcode, final String owner,
7676
final String name, final String desc) {

src/main/java/scala/tools/asm/tree/FieldNode.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
public class FieldNode extends FieldVisitor {
4848

4949
/**
50-
* The field's access flags (see {@link org.objectweb.asm.Opcodes}). This
50+
* The field's access flags (see {@link scala.tools.asm.Opcodes}). This
5151
* field also indicates if the field is synthetic and/or deprecated.
5252
*/
5353
public int access;
@@ -58,7 +58,7 @@ public class FieldNode extends FieldVisitor {
5858
public String name;
5959

6060
/**
61-
* The field's descriptor (see {@link org.objectweb.asm.Type}).
61+
* The field's descriptor (see {@link scala.tools.asm.Type}).
6262
*/
6363
public String desc;
6464

@@ -78,7 +78,7 @@ public class FieldNode extends FieldVisitor {
7878
* The runtime visible annotations of this field. This list is a list of
7979
* {@link AnnotationNode} objects. May be <tt>null</tt>.
8080
*
81-
* @associates org.objectweb.asm.tree.AnnotationNode
81+
* @associates scala.tools.asm.tree.AnnotationNode
8282
* @label visible
8383
*/
8484
public List<AnnotationNode> visibleAnnotations;
@@ -87,7 +87,7 @@ public class FieldNode extends FieldVisitor {
8787
* The runtime invisible annotations of this field. This list is a list of
8888
* {@link AnnotationNode} objects. May be <tt>null</tt>.
8989
*
90-
* @associates org.objectweb.asm.tree.AnnotationNode
90+
* @associates scala.tools.asm.tree.AnnotationNode
9191
* @label invisible
9292
*/
9393
public List<AnnotationNode> invisibleAnnotations;
@@ -96,7 +96,7 @@ public class FieldNode extends FieldVisitor {
9696
* The runtime visible type annotations of this field. This list is a list
9797
* of {@link TypeAnnotationNode} objects. May be <tt>null</tt>.
9898
*
99-
* @associates org.objectweb.asm.tree.TypeAnnotationNode
99+
* @associates scala.tools.asm.tree.TypeAnnotationNode
100100
* @label visible
101101
*/
102102
public List<TypeAnnotationNode> visibleTypeAnnotations;
@@ -105,7 +105,7 @@ public class FieldNode extends FieldVisitor {
105105
* The runtime invisible type annotations of this field. This list is a list
106106
* of {@link TypeAnnotationNode} objects. May be <tt>null</tt>.
107107
*
108-
* @associates org.objectweb.asm.tree.TypeAnnotationNode
108+
* @associates scala.tools.asm.tree.TypeAnnotationNode
109109
* @label invisible
110110
*/
111111
public List<TypeAnnotationNode> invisibleTypeAnnotations;
@@ -114,7 +114,7 @@ public class FieldNode extends FieldVisitor {
114114
* The non standard attributes of this field. This list is a list of
115115
* {@link Attribute} objects. May be <tt>null</tt>.
116116
*
117-
* @associates org.objectweb.asm.Attribute
117+
* @associates scala.tools.asm.Attribute
118118
*/
119119
public List<Attribute> attrs;
120120

@@ -125,12 +125,12 @@ public class FieldNode extends FieldVisitor {
125125
*
126126
* @param access
127127
* the field's access flags (see
128-
* {@link org.objectweb.asm.Opcodes}). This parameter also
128+
* {@link scala.tools.asm.Opcodes}). This parameter also
129129
* indicates if the field is synthetic and/or deprecated.
130130
* @param name
131131
* the field's name.
132132
* @param desc
133-
* the field's descriptor (see {@link org.objectweb.asm.Type
133+
* the field's descriptor (see {@link scala.tools.asm.Type
134134
* Type}).
135135
* @param signature
136136
* the field's signature.
@@ -159,12 +159,12 @@ public FieldNode(final int access, final String name, final String desc,
159159
* of {@link Opcodes#ASM4} or {@link Opcodes#ASM5}.
160160
* @param access
161161
* the field's access flags (see
162-
* {@link org.objectweb.asm.Opcodes}). This parameter also
162+
* {@link scala.tools.asm.Opcodes}). This parameter also
163163
* indicates if the field is synthetic and/or deprecated.
164164
* @param name
165165
* the field's name.
166166
* @param desc
167-
* the field's descriptor (see {@link org.objectweb.asm.Type
167+
* the field's descriptor (see {@link scala.tools.asm.Type
168168
* Type}).
169169
* @param signature
170170
* the field's signature.

src/main/java/scala/tools/asm/tree/InnerClassNode.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ public class InnerClassNode {
4040

4141
/**
4242
* The internal name of an inner class (see
43-
* {@link org.objectweb.asm.Type#getInternalName() getInternalName}).
43+
* {@link scala.tools.asm.Type#getInternalName() getInternalName}).
4444
*/
4545
public String name;
4646

4747
/**
4848
* The internal name of the class to which the inner class belongs (see
49-
* {@link org.objectweb.asm.Type#getInternalName() getInternalName}). May be
49+
* {@link scala.tools.asm.Type#getInternalName() getInternalName}). May be
5050
* <tt>null</tt>.
5151
*/
5252
public String outerName;
@@ -68,11 +68,11 @@ public class InnerClassNode {
6868
*
6969
* @param name
7070
* the internal name of an inner class (see
71-
* {@link org.objectweb.asm.Type#getInternalName()
71+
* {@link scala.tools.asm.Type#getInternalName()
7272
* getInternalName}).
7373
* @param outerName
7474
* the internal name of the class to which the inner class
75-
* belongs (see {@link org.objectweb.asm.Type#getInternalName()
75+
* belongs (see {@link scala.tools.asm.Type#getInternalName()
7676
* getInternalName}). May be <tt>null</tt>.
7777
* @param innerName
7878
* the (simple) name of the inner class inside its enclosing

src/main/java/scala/tools/asm/tree/InvokeDynamicInsnNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class InvokeDynamicInsnNode extends AbstractInsnNode {
6868
* @param name
6969
* invokedynamic name.
7070
* @param desc
71-
* invokedynamic descriptor (see {@link org.objectweb.asm.Type}).
71+
* invokedynamic descriptor (see {@link scala.tools.asm.Type}).
7272
* @param bsm
7373
* the bootstrap method.
7474
* @param bsmArgs

src/main/java/scala/tools/asm/tree/LdcInsnNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class LdcInsnNode extends AbstractInsnNode {
4444
/**
4545
* The constant to be loaded on the stack. This parameter must be a non null
4646
* {@link Integer}, a {@link Float}, a {@link Long}, a {@link Double}, a
47-
* {@link String} or a {@link org.objectweb.asm.Type}.
47+
* {@link String} or a {@link scala.tools.asm.Type}.
4848
*/
4949
public Object cst;
5050

0 commit comments

Comments
 (0)