Skip to content

Commit 2e8a7bb

Browse files
committed
Update @links, @associates
1 parent 9771c23 commit 2e8a7bb

28 files changed

+180
-180
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ public SignatureReader(final String signature) {
5454
* Makes the given visitor visit the signature of this {@link SignatureReader}. This signature is
5555
* the one specified in the constructor (see {@link #SignatureReader}). This method is intended to
5656
* be called on a {@link SignatureReader} that was created using a <i>ClassSignature</i> (such as
57-
* the <code>signature</code> parameter of the {@link org.objectweb.asm.ClassVisitor#visit}
57+
* the <code>signature</code> parameter of the {@link scala.tools.asm.ClassVisitor#visit}
5858
* method) or a <i>MethodSignature</i> (such as the <code>signature</code> parameter of the {@link
59-
* org.objectweb.asm.ClassVisitor#visitMethod} method).
59+
* scala.tools.asm.ClassVisitor#visitMethod} method).
6060
*
6161
* @param signatureVistor the visitor that must visit this signature.
6262
*/
@@ -131,8 +131,8 @@ public void accept(final SignatureVisitor signatureVistor) {
131131
* the one specified in the constructor (see {@link #SignatureReader}). This method is intended to
132132
* be called on a {@link SignatureReader} that was created using a <i>JavaTypeSignature</i>, such
133133
* as the <code>signature</code> parameter of the {@link
134-
* org.objectweb.asm.ClassVisitor#visitField} or {@link
135-
* org.objectweb.asm.MethodVisitor#visitLocalVariable} methods.
134+
* scala.tools.asm.ClassVisitor#visitField} or {@link
135+
* scala.tools.asm.MethodVisitor#visitLocalVariable} methods.
136136
*
137137
* @param signatureVisitor the visitor that must visit this signature.
138138
*/

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

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

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,27 +53,27 @@ public class ClassNode extends ClassVisitor {
5353
public int version;
5454

5555
/**
56-
* The class's access flags (see {@link org.objectweb.asm.Opcodes}). This field also indicates if
56+
* The class's access flags (see {@link scala.tools.asm.Opcodes}). This field also indicates if
5757
* the class is deprecated.
5858
*/
5959
public int access;
6060

61-
/** The internal name of this class (see {@link org.objectweb.asm.Type#getInternalName}). */
61+
/** The internal name of this class (see {@link scala.tools.asm.Type#getInternalName}). */
6262
public String name;
6363

6464
/** The signature of this class. May be <tt>null</tt>. */
6565
public String signature;
6666

6767
/**
68-
* The internal of name of the super class (see {@link org.objectweb.asm.Type#getInternalName}).
68+
* The internal of name of the super class (see {@link scala.tools.asm.Type#getInternalName}).
6969
* For interfaces, the super class is {@link Object}. May be <tt>null</tt>, but only for the
7070
* {@link Object} class.
7171
*/
7272
public String superName;
7373

7474
/**
7575
* The internal names of the interfaces directly implemented by this class (see {@link
76-
* org.objectweb.asm.Type#getInternalName}).
76+
* scala.tools.asm.Type#getInternalName}).
7777
*/
7878
public List<String> interfaces;
7979

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ public class FieldInsnNode extends AbstractInsnNode {
4141

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

4848
/** The field's name. */
4949
public String name;
5050

51-
/** The field's descriptor (see {@link org.objectweb.asm.Type}). */
51+
/** The field's descriptor (see {@link scala.tools.asm.Type}). */
5252
public String desc;
5353

5454
/**
@@ -57,9 +57,9 @@ public class FieldInsnNode extends AbstractInsnNode {
5757
* @param opcode the opcode of the type instruction to be constructed. This opcode must be
5858
* GETSTATIC, PUTSTATIC, GETFIELD or PUTFIELD.
5959
* @param owner the internal name of the field's owner class (see {@link
60-
* org.objectweb.asm.Type#getInternalName}).
60+
* scala.tools.asm.Type#getInternalName}).
6161
* @param name the field's name.
62-
* @param descriptor the field's descriptor (see {@link org.objectweb.asm.Type}).
62+
* @param descriptor the field's descriptor (see {@link scala.tools.asm.Type}).
6363
*/
6464
public FieldInsnNode(
6565
final int opcode, final String owner, final String name, final String descriptor) {

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545
public class FieldNode extends FieldVisitor {
4646

4747
/**
48-
* The field's access flags (see {@link org.objectweb.asm.Opcodes}). This field also indicates if
48+
* The field's access flags (see {@link scala.tools.asm.Opcodes}). This field also indicates if
4949
* the field is synthetic and/or deprecated.
5050
*/
5151
public int access;
5252

5353
/** The field's name. */
5454
public String name;
5555

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

5959
/** The field's signature. May be <tt>null</tt>. */
@@ -85,10 +85,10 @@ public class FieldNode extends FieldVisitor {
8585
* Constructs a new {@link FieldNode}. <i>Subclasses must not use this constructor</i>. Instead,
8686
* they must use the {@link #FieldNode(int, int, String, String, String, Object)} version.
8787
*
88-
* @param access the field's access flags (see {@link org.objectweb.asm.Opcodes}). This parameter
88+
* @param access the field's access flags (see {@link scala.tools.asm.Opcodes}). This parameter
8989
* also indicates if the field is synthetic and/or deprecated.
9090
* @param name the field's name.
91-
* @param descriptor the field's descriptor (see {@link org.objectweb.asm.Type}).
91+
* @param descriptor the field's descriptor (see {@link scala.tools.asm.Type}).
9292
* @param signature the field's signature.
9393
* @param value the field's initial value. This parameter, which may be <tt>null</tt> if the field
9494
* does not have an initial value, must be an {@link Integer}, a {@link Float}, a {@link
@@ -112,10 +112,10 @@ public FieldNode(
112112
*
113113
* @param api the ASM API version implemented by this visitor. Must be one of {@link Opcodes#ASM4}
114114
* or {@link Opcodes#ASM5}.
115-
* @param access the field's access flags (see {@link org.objectweb.asm.Opcodes}). This parameter
115+
* @param access the field's access flags (see {@link scala.tools.asm.Opcodes}). This parameter
116116
* also indicates if the field is synthetic and/or deprecated.
117117
* @param name the field's name.
118-
* @param descriptor the field's descriptor (see {@link org.objectweb.asm.Type}).
118+
* @param descriptor the field's descriptor (see {@link scala.tools.asm.Type}).
119119
* @param signature the field's signature.
120120
* @param value the field's initial value. This parameter, which may be <tt>null</tt> if the field
121121
* does not have an initial value, must be an {@link Integer}, a {@link Float}, a {@link

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
*/
3737
public class InnerClassNode {
3838

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

4242
/**
4343
* The internal name of the class to which the inner class belongs (see {@link
44-
* org.objectweb.asm.Type#getInternalName()}). May be <tt>null</tt>.
44+
* scala.tools.asm.Type#getInternalName()}). May be <tt>null</tt>.
4545
*/
4646
public String outerName;
4747

@@ -58,9 +58,9 @@ public class InnerClassNode {
5858
* Constructs a new {@link InnerClassNode}.
5959
*
6060
* @param name the internal name of an inner class (see {@link
61-
* org.objectweb.asm.Type#getInternalName()}).
61+
* scala.tools.asm.Type#getInternalName()}).
6262
* @param outerName the internal name of the class to which the inner class belongs (see {@link
63-
* org.objectweb.asm.Type#getInternalName()}). May be <tt>null</tt>.
63+
* scala.tools.asm.Type#getInternalName()}). May be <tt>null</tt>.
6464
* @param innerName the (simple) name of the inner class inside its enclosing class. May be
6565
* <tt>null</tt> for anonymous inner classes.
6666
* @param access the access flags of the inner class as originally declared in the enclosing

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class InvokeDynamicInsnNode extends AbstractInsnNode {
4343
/** The method's name. */
4444
public String name;
4545

46-
/** The method's descriptor (see {@link org.objectweb.asm.Type}). */
46+
/** The method's descriptor (see {@link scala.tools.asm.Type}). */
4747
public String desc;
4848

4949
/** The bootstrap method. */
@@ -56,11 +56,11 @@ public class InvokeDynamicInsnNode extends AbstractInsnNode {
5656
* Constructs a new {@link InvokeDynamicInsnNode}.
5757
*
5858
* @param name the method's name.
59-
* @param descriptor the method's descriptor (see {@link org.objectweb.asm.Type}).
59+
* @param descriptor the method's descriptor (see {@link scala.tools.asm.Type}).
6060
* @param bootstrapMethodHandle the bootstrap method.
6161
* @param bootstrapMethodArguments the bootstrap method constant arguments. Each argument must be
6262
* an {@link Integer}, {@link Float}, {@link Long}, {@link Double}, {@link String}, {@link
63-
* org.objectweb.asm.Type} or {@link Handle} value. This method is allowed to modify the
63+
* scala.tools.asm.Type} or {@link Handle} value. This method is allowed to modify the
6464
* content of the array so a caller should expect that this array may change.
6565
*/
6666
public InvokeDynamicInsnNode(

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

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class LocalVariableAnnotationNode extends TypeAnnotationNode {
6666
* constructor</i>. Instead, they must use the {@link #LocalVariableAnnotationNode(int, TypePath,
6767
* LabelNode[], LabelNode[], int[], String)} version.
6868
*
69-
* @param typeRef a reference to the annotated type. See {@link org.objectweb.asm.TypeReference}.
69+
* @param typeRef a reference to the annotated type. See {@link scala.tools.asm.TypeReference}.
7070
* @param typePath the path to the annotated type argument, wildcard bound, array element type, or
7171
* static inner type within 'typeRef'. May be <tt>null</tt> if the annotation targets
7272
* 'typeRef' as a whole.
@@ -93,7 +93,7 @@ public LocalVariableAnnotationNode(
9393
*
9494
* @param api the ASM API version implemented by this visitor. Must be one of {@link
9595
* Opcodes#ASM4}, {@link Opcodes#ASM5}, {@link Opcodes#ASM6} or {@link Opcodes#ASM7_EXPERIMENTAL}.
96-
* @param typeRef a reference to the annotated type. See {@link org.objectweb.asm.TypeReference}.
96+
* @param typeRef a reference to the annotated type. See {@link scala.tools.asm.TypeReference}.
9797
* @param start the fist instructions corresponding to the continuous ranges that make the scope
9898
* of this local variable (inclusive).
9999
* @param end the last instructions corresponding to the continuous ranges that make the scope of

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ public class MethodInsnNode extends AbstractInsnNode {
4242

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

4949
/** The method's name. */
5050
public String name;
5151

52-
/** The method's descriptor (see {@link org.objectweb.asm.Type}). */
52+
/** The method's descriptor (see {@link scala.tools.asm.Type}). */
5353
public String desc;
5454

5555
/** Whether the method's owner class if an interface. */
@@ -61,9 +61,9 @@ public class MethodInsnNode extends AbstractInsnNode {
6161
* @param opcode the opcode of the type instruction to be constructed. This opcode must be
6262
* INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE.
6363
* @param owner the internal name of the method's owner class (see {@link
64-
* org.objectweb.asm.Type#getInternalName()}).
64+
* scala.tools.asm.Type#getInternalName()}).
6565
* @param name the method's name.
66-
* @param descriptor the method's descriptor (see {@link org.objectweb.asm.Type}).
66+
* @param descriptor the method's descriptor (see {@link scala.tools.asm.Type}).
6767
* @deprecated
6868
*/
6969
@Deprecated
@@ -78,9 +78,9 @@ public MethodInsnNode(
7878
* @param opcode the opcode of the type instruction to be constructed. This opcode must be
7979
* INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE.
8080
* @param owner the internal name of the method's owner class (see {@link
81-
* org.objectweb.asm.Type#getInternalName()}).
81+
* scala.tools.asm.Type#getInternalName()}).
8282
* @param name the method's name.
83-
* @param descriptor the method's descriptor (see {@link org.objectweb.asm.Type}).
83+
* @param descriptor the method's descriptor (see {@link scala.tools.asm.Type}).
8484
* @param isInterface if the method's owner class is an interface.
8585
*/
8686
public MethodInsnNode(

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class ModuleExportNode {
4242
public String packaze;
4343

4444
/**
45-
* The access flags (see {@link org.objectweb.asm.Opcodes}). Valid values are {@code
45+
* The access flags (see {@link scala.tools.asm.Opcodes}). Valid values are {@code
4646
* ACC_SYNTHETIC} and {@code ACC_MANDATED}.
4747
*/
4848
public int access;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
*/
4040
public class MultiANewArrayInsnNode extends AbstractInsnNode {
4141

42-
/** An array type descriptor (see {@link org.objectweb.asm.Type}). */
42+
/** An array type descriptor (see {@link scala.tools.asm.Type}). */
4343
public String desc;
4444

4545
/** Number of dimensions of the array to allocate. */
@@ -48,7 +48,7 @@ public class MultiANewArrayInsnNode extends AbstractInsnNode {
4848
/**
4949
* Constructs a new {@link MultiANewArrayInsnNode}.
5050
*
51-
* @param descriptor an array type descriptor (see {@link org.objectweb.asm.Type}).
51+
* @param descriptor an array type descriptor (see {@link scala.tools.asm.Type}).
5252
* @param numDimensions the number of dimensions of the array to allocate.
5353
*/
5454
public MultiANewArrayInsnNode(final String descriptor, final int numDimensions) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class ParameterNode {
4040
public String name;
4141

4242
/**
43-
* The parameter's access flags (see {@link org.objectweb.asm.Opcodes}). Valid values are
43+
* The parameter's access flags (see {@link scala.tools.asm.Opcodes}). Valid values are
4444
* <tt>ACC_FINAL</tt>, <tt>ACC_SYNTHETIC</tt> and <tt>ACC_MANDATED</tt>.
4545
*/
4646
public int access;
@@ -50,7 +50,7 @@ public class ParameterNode {
5050
*
5151
* @param access The parameter's access flags. Valid values are <tt>ACC_FINAL</tt>,
5252
* <tt>ACC_SYNTHETIC</tt> or/and <tt>ACC_MANDATED</tt> (see {@link
53-
* org.objectweb.asm.Opcodes}).
53+
* scala.tools.asm.Opcodes}).
5454
* @param name the parameter's name.
5555
*/
5656
public ParameterNode(final String name, final int access) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*/
3838
public class TypeAnnotationNode extends AnnotationNode {
3939

40-
/** A reference to the annotated type. See {@link org.objectweb.asm.TypeReference}. */
40+
/** A reference to the annotated type. See {@link scala.tools.asm.TypeReference}. */
4141
public int typeRef;
4242

4343
/**
@@ -51,7 +51,7 @@ public class TypeAnnotationNode extends AnnotationNode {
5151
* Constructs a new {@link AnnotationNode}. <i>Subclasses must not use this constructor</i>.
5252
* Instead, they must use the {@link #TypeAnnotationNode(int, int, TypePath, String)} version.
5353
*
54-
* @param typeRef a reference to the annotated type. See {@link org.objectweb.asm.TypeReference}.
54+
* @param typeRef a reference to the annotated type. See {@link scala.tools.asm.TypeReference}.
5555
* @param typePath the path to the annotated type argument, wildcard bound, array element type, or
5656
* static inner type within 'typeRef'. May be <tt>null</tt> if the annotation targets
5757
* 'typeRef' as a whole.
@@ -70,7 +70,7 @@ public TypeAnnotationNode(final int typeRef, final TypePath typePath, final Stri
7070
*
7171
* @param api the ASM API version implemented by this visitor. Must be one of {@link
7272
* Opcodes#ASM4}, {@link Opcodes#ASM5}, {@link Opcodes#ASM6} or {@link Opcodes#ASM7_EXPERIMENTAL}.
73-
* @param typeRef a reference to the annotated type. See {@link org.objectweb.asm.TypeReference}.
73+
* @param typeRef a reference to the annotated type. See {@link scala.tools.asm.TypeReference}.
7474
* @param typePath the path to the annotated type argument, wildcard bound, array element type, or
7575
* static inner type within 'typeRef'. May be <tt>null</tt> if the annotation targets
7676
* 'typeRef' as a whole.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class TypeInsnNode extends AbstractInsnNode {
4141

4242
/**
4343
* The operand of this instruction. This operand is an internal name (see {@link
44-
* org.objectweb.asm.Type}).
44+
* scala.tools.asm.Type}).
4545
*/
4646
public String desc;
4747

@@ -51,7 +51,7 @@ public class TypeInsnNode extends AbstractInsnNode {
5151
* @param opcode the opcode of the type instruction to be constructed. This opcode must be NEW,
5252
* ANEWARRAY, CHECKCAST or INSTANCEOF.
5353
* @param descriptor the operand of the instruction to be constructed. This operand is an internal
54-
* name (see {@link org.objectweb.asm.Type}).
54+
* name (see {@link scala.tools.asm.Type}).
5555
*/
5656
public TypeInsnNode(final int opcode, final String descriptor) {
5757
super(opcode);

src/main/java/scala/tools/asm/tree/analysis/BasicInterpreter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public BasicInterpreter() {
7272
* Constructs a new {@link BasicInterpreter}.
7373
*
7474
* @param api the ASM API version supported by this interpreter. Must be one of {@link
75-
* org.objectweb.asm.Opcodes#ASM4}, {@link org.objectweb.asm.Opcodes#ASM5}, {@link
76-
* org.objectweb.asm.Opcodes#ASM6} or {@link org.objectweb.asm.Opcodes#ASM7_EXPERIMENTAL}.
75+
* scala.tools.asm.Opcodes#ASM4}, {@link scala.tools.asm.Opcodes#ASM5}, {@link
76+
* scala.tools.asm.Opcodes#ASM6} or {@link scala.tools.asm.Opcodes#ASM7_EXPERIMENTAL}.
7777
*/
7878
protected BasicInterpreter(final int api) {
7979
super(api);

src/main/java/scala/tools/asm/tree/analysis/BasicVerifier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public BasicVerifier() {
5858
* Constructs a new {@link BasicVerifier}.
5959
*
6060
* @param api the ASM API version supported by this interpreter. Must be one of {@link
61-
* org.objectweb.asm.Opcodes#ASM4}, {@link org.objectweb.asm.Opcodes#ASM5}, {@link
62-
* org.objectweb.asm.Opcodes#ASM6} or {@link org.objectweb.asm.Opcodes#ASM7_EXPERIMENTAL}.
61+
* scala.tools.asm.Opcodes#ASM4}, {@link scala.tools.asm.Opcodes#ASM5}, {@link
62+
* scala.tools.asm.Opcodes#ASM6} or {@link scala.tools.asm.Opcodes#ASM7_EXPERIMENTAL}.
6363
*/
6464
protected BasicVerifier(final int api) {
6565
super(api);

src/main/java/scala/tools/asm/tree/analysis/Interpreter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ public abstract class Interpreter<V extends Value> {
4646

4747
/**
4848
* The ASM API version supported by this interpreter. The value of this field must be one of
49-
* {@link org.objectweb.asm.Opcodes#ASM4}, {@link org.objectweb.asm.Opcodes#ASM5}, {@link
50-
* org.objectweb.asm.Opcodes#ASM6} or {@link org.objectweb.asm.Opcodes#ASM7_EXPERIMENTAL}.
49+
* {@link scala.tools.asm.Opcodes#ASM4}, {@link scala.tools.asm.Opcodes#ASM5}, {@link
50+
* scala.tools.asm.Opcodes#ASM6} or {@link scala.tools.asm.Opcodes#ASM7_EXPERIMENTAL}.
5151
*/
5252
protected final int api;
5353

5454
/**
5555
* Constructs a new {@link Interpreter}.
5656
*
5757
* @param api the ASM API version supported by this interpreter. Must be one of {@link
58-
* org.objectweb.asm.Opcodes#ASM4}, {@link org.objectweb.asm.Opcodes#ASM5}, {@link
59-
* org.objectweb.asm.Opcodes#ASM6} or {@link org.objectweb.asm.Opcodes#ASM7_EXPERIMENTAL}.
58+
* scala.tools.asm.Opcodes#ASM4}, {@link scala.tools.asm.Opcodes#ASM5}, {@link
59+
* scala.tools.asm.Opcodes#ASM6} or {@link scala.tools.asm.Opcodes#ASM7_EXPERIMENTAL}.
6060
*/
6161
protected Interpreter(final int api) {
6262
this.api = api;

0 commit comments

Comments
 (0)