Skip to content

Commit 1bc03a8

Browse files
committed
Update @links, @associates
1 parent 7534071 commit 1bc03a8

30 files changed

+149
-149
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public final class ClassTooLargeException extends IndexOutOfBoundsException {
4343
* Constructs a new {@link ClassTooLargeException}.
4444
*
4545
* @param className the internal name of the class (see {@link
46-
* org.objectweb.asm.Type#getInternalName()}).
46+
* scala.tools.asm.Type#getInternalName()}).
4747
* @param constantPoolCount the number of constant pool items of the class.
4848
*/
4949
public ClassTooLargeException(final String className, final int constantPoolCount) {
@@ -53,7 +53,7 @@ public ClassTooLargeException(final String className, final int constantPoolCoun
5353
}
5454

5555
/**
56-
* Returns the internal name of the class (see {@link org.objectweb.asm.Type#getInternalName()}).
56+
* Returns the internal name of the class (see {@link scala.tools.asm.Type#getInternalName()}).
5757
*
5858
* @return the internal name of the class.
5959
*/

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

+4-4
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/signature/SignatureVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public SignatureVisitor visitArrayType() {
181181
* Starts the visit of a signature corresponding to a class or interface type.
182182
*
183183
* @param name the internal name of the class or interface (see {@link
184-
* org.objectweb.asm.Type#getInternalName()}).
184+
* scala.tools.asm.Type#getInternalName()}).
185185
*/
186186
public void visitClassType(final String name) {}
187187

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

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

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

+8-8
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 {@link Opcodes#ACC_DEPRECATED} or a record {@link Opcodes#ACC_RECORD}.
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 {@literal null}. */
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 {@literal null}, 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

@@ -90,7 +90,7 @@ public class ClassNode extends ClassVisitor {
9090

9191
/**
9292
* The internal name of the enclosing class of this class (see {@link
93-
* org.objectweb.asm.Type#getInternalName()}). Must be {@literal null} if this class is not a
93+
* scala.tools.asm.Type#getInternalName()}). Must be {@literal null} if this class is not a
9494
* local or anonymous class.
9595
*/
9696
public String outerClass;
@@ -131,19 +131,19 @@ public class ClassNode extends ClassVisitor {
131131

132132
/**
133133
* The internal name of the nest host class of this class (see {@link
134-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
134+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
135135
*/
136136
public String nestHostClass;
137137

138138
/**
139139
* The internal names of the nest members of this class (see {@link
140-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
140+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
141141
*/
142142
public List<String> nestMembers;
143143

144144
/**
145145
* The internal names of the permitted subclasses of this class (see {@link
146-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
146+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
147147
*/
148148
public List<String> permittedSubclasses;
149149

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ public class FieldInsnNode extends AbstractInsnNode {
4040

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

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

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

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

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@
4343
public class FieldNode extends FieldVisitor {
4444

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

5151
/** The field's name. */
5252
public String name;
5353

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

5757
/** The field's signature. May be {@literal null}. */
@@ -83,10 +83,10 @@ public class FieldNode extends FieldVisitor {
8383
* Constructs a new {@link FieldNode}. <i>Subclasses must not use this constructor</i>. Instead,
8484
* they must use the {@link #FieldNode(int, int, String, String, String, Object)} version.
8585
*
86-
* @param access the field's access flags (see {@link org.objectweb.asm.Opcodes}). This parameter
86+
* @param access the field's access flags (see {@link scala.tools.asm.Opcodes}). This parameter
8787
* also indicates if the field is synthetic and/or deprecated.
8888
* @param name the field's name.
89-
* @param descriptor the field's descriptor (see {@link org.objectweb.asm.Type}).
89+
* @param descriptor the field's descriptor (see {@link scala.tools.asm.Type}).
9090
* @param signature the field's signature.
9191
* @param value the field's initial value. This parameter, which may be {@literal null} if the
9292
* field does not have an initial value, must be an {@link Integer}, a {@link Float}, a {@link
@@ -110,10 +110,10 @@ public FieldNode(
110110
*
111111
* @param api the ASM API version implemented by this visitor. Must be one of the {@code
112112
* ASM}<i>x</i> values in {@link Opcodes}.
113-
* @param access the field's access flags (see {@link org.objectweb.asm.Opcodes}). This parameter
113+
* @param access the field's access flags (see {@link scala.tools.asm.Opcodes}). This parameter
114114
* also indicates if the field is synthetic and/or deprecated.
115115
* @param name the field's name.
116-
* @param descriptor the field's descriptor (see {@link org.objectweb.asm.Type}).
116+
* @param descriptor the field's descriptor (see {@link scala.tools.asm.Type}).
117117
* @param signature the field's signature.
118118
* @param value the field's initial value. This parameter, which may be {@literal null} if the
119119
* field 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

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@
4040
*/
4141
public class InnerClassNode {
4242

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

4646
/**
4747
* The internal name of the class to which the inner class belongs (see {@link
48-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
48+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
4949
*/
5050
public String outerName;
5151

@@ -64,9 +64,9 @@ public class InnerClassNode {
6464
/**
6565
* Constructs a new {@link InnerClassNode} for an inner class C.
6666
*
67-
* @param name the internal name of C (see {@link org.objectweb.asm.Type#getInternalName()}).
67+
* @param name the internal name of C (see {@link scala.tools.asm.Type#getInternalName()}).
6868
* @param outerName the internal name of the class or interface C is a member of (see {@link
69-
* org.objectweb.asm.Type#getInternalName()}). Must be {@literal null} if C is not the member
69+
* scala.tools.asm.Type#getInternalName()}). Must be {@literal null} if C is not the member
7070
* of a class or interface (e.g. for local or anonymous classes).
7171
* @param innerName the (simple) name of C. Must be {@literal null} for anonymous inner classes.
7272
* @param access the access flags of C originally declared in the source code from which this

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class InvokeDynamicInsnNode extends AbstractInsnNode {
4242
/** The method's name. */
4343
public String name;
4444

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

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

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public class LocalVariableAnnotationNode extends TypeAnnotationNode {
6565
* constructor</i>. Instead, they must use the {@link #LocalVariableAnnotationNode(int, TypePath,
6666
* LabelNode[], LabelNode[], int[], String)} version.
6767
*
68-
* @param typeRef a reference to the annotated type. See {@link org.objectweb.asm.TypeReference}.
68+
* @param typeRef a reference to the annotated type. See {@link scala.tools.asm.TypeReference}.
6969
* @param typePath the path to the annotated type argument, wildcard bound, array element type, or
7070
* static inner type within 'typeRef'. May be {@literal null} if the annotation targets
7171
* 'typeRef' as a whole.
@@ -92,7 +92,7 @@ public LocalVariableAnnotationNode(
9292
*
9393
* @param api the ASM API version implemented by this visitor. Must be one of the {@code
9494
* ASM}<i>x</i> values in {@link Opcodes}.
95-
* @param typeRef a reference to the annotated type. See {@link org.objectweb.asm.TypeReference}.
95+
* @param typeRef a reference to the annotated type. See {@link scala.tools.asm.TypeReference}.
9696
* @param start the fist instructions corresponding to the continuous ranges that make the scope
9797
* of this local variable (inclusive).
9898
* @param end the last instructions corresponding to the continuous ranges that make the scope of

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class MethodInsnNode extends AbstractInsnNode {
4141

4242
/**
4343
* The internal name of the method's owner class (see {@link
44-
* org.objectweb.asm.Type#getInternalName()}).
44+
* scala.tools.asm.Type#getInternalName()}).
4545
*
4646
* <p>For methods of arrays, e.g., {@code clone()}, the array type descriptor.
4747
*/
@@ -50,7 +50,7 @@ public class MethodInsnNode extends AbstractInsnNode {
5050
/** The method's name. */
5151
public String name;
5252

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

5656
/** Whether the method's owner class if an interface. */
@@ -62,9 +62,9 @@ public class MethodInsnNode extends AbstractInsnNode {
6262
* @param opcode the opcode of the type instruction to be constructed. This opcode must be
6363
* INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE.
6464
* @param owner the internal name of the method's owner class (see {@link
65-
* org.objectweb.asm.Type#getInternalName()}).
65+
* scala.tools.asm.Type#getInternalName()}).
6666
* @param name the method's name.
67-
* @param descriptor the method's descriptor (see {@link org.objectweb.asm.Type}).
67+
* @param descriptor the method's descriptor (see {@link scala.tools.asm.Type}).
6868
*/
6969
public MethodInsnNode(
7070
final int opcode, final String owner, final String name, final String descriptor) {
@@ -77,9 +77,9 @@ public MethodInsnNode(
7777
* @param opcode the opcode of the type instruction to be constructed. This opcode must be
7878
* INVOKEVIRTUAL, INVOKESPECIAL, INVOKESTATIC or INVOKEINTERFACE.
7979
* @param owner the internal name of the method's owner class (see {@link
80-
* org.objectweb.asm.Type#getInternalName()}).
80+
* scala.tools.asm.Type#getInternalName()}).
8181
* @param name the method's name.
82-
* @param descriptor the method's descriptor (see {@link org.objectweb.asm.Type}).
82+
* @param descriptor the method's descriptor (see {@link scala.tools.asm.Type}).
8383
* @param isInterface if the method's owner class is an interface.
8484
*/
8585
public MethodInsnNode(

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ public class ModuleExportNode {
3939

4040
/**
4141
* The internal name of the exported package (see {@link
42-
* org.objectweb.asm.Type#getInternalName()}).
42+
* scala.tools.asm.Type#getInternalName()}).
4343
*/
4444
public String packaze;
4545

4646
/**
47-
* The access flags (see {@link org.objectweb.asm.Opcodes}). Valid values are {@code
47+
* The access flags (see {@link scala.tools.asm.Opcodes}). Valid values are {@code
4848
* ACC_SYNTHETIC} and {@code ACC_MANDATED}.
4949
*/
5050
public int access;
@@ -59,7 +59,7 @@ public class ModuleExportNode {
5959
* Constructs a new {@link ModuleExportNode}.
6060
*
6161
* @param packaze the internal name of the exported package (see {@link
62-
* org.objectweb.asm.Type#getInternalName()}).
62+
* scala.tools.asm.Type#getInternalName()}).
6363
* @param access the package access flags, one or more of {@code ACC_SYNTHETIC} and {@code
6464
* ACC_MANDATED}.
6565
* @param modules a list of modules that can access this exported package, specified with fully

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ public class ModuleNode extends ModuleVisitor {
5454

5555
/**
5656
* The internal name of the main class of this module (see {@link
57-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
57+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
5858
*/
5959
public String mainClass;
6060

6161
/**
6262
* The internal name of the packages declared by this module (see {@link
63-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
63+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
6464
*/
6565
public List<String> packages;
6666

@@ -75,7 +75,7 @@ public class ModuleNode extends ModuleVisitor {
7575

7676
/**
7777
* The internal names of the services used by this module (see {@link
78-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
78+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
7979
*/
8080
public List<String> uses;
8181

@@ -116,7 +116,7 @@ public ModuleNode(final String name, final int access, final String version) {
116116
* @param exports The packages exported by this module. May be {@literal null}.
117117
* @param opens The packages opened by this module. May be {@literal null}.
118118
* @param uses The internal names of the services used by this module (see {@link
119-
* org.objectweb.asm.Type#getInternalName()}). May be {@literal null}.
119+
* scala.tools.asm.Type#getInternalName()}). May be {@literal null}.
120120
* @param provides The services provided by this module. May be {@literal null}.
121121
*/
122122
public ModuleNode(

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
public class ModuleOpenNode {
3939

4040
/**
41-
* The internal name of the opened package (see {@link org.objectweb.asm.Type#getInternalName()}).
41+
* The internal name of the opened package (see {@link scala.tools.asm.Type#getInternalName()}).
4242
*/
4343
public String packaze;
4444

@@ -58,7 +58,7 @@ public class ModuleOpenNode {
5858
* Constructs a new {@link ModuleOpenNode}.
5959
*
6060
* @param packaze the internal name of the opened package (see {@link
61-
* org.objectweb.asm.Type#getInternalName()}).
61+
* scala.tools.asm.Type#getInternalName()}).
6262
* @param access the access flag of the opened package, valid values are among {@code
6363
* ACC_SYNTHETIC} and {@code ACC_MANDATED}.
6464
* @param modules the fully qualified names (using dots) of the modules that can use deep

0 commit comments

Comments
 (0)