43
43
public class FieldNode extends FieldVisitor {
44
44
45
45
/**
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
47
47
* the field is synthetic and/or deprecated.
48
48
*/
49
49
public int access ;
50
50
51
51
/** The field's name. */
52
52
public String name ;
53
53
54
- /** The field's descriptor (see {@link org.objectweb .asm.Type}). */
54
+ /** The field's descriptor (see {@link scala.tools .asm.Type}). */
55
55
public String desc ;
56
56
57
57
/** The field's signature. May be {@literal null}. */
@@ -83,10 +83,10 @@ public class FieldNode extends FieldVisitor {
83
83
* Constructs a new {@link FieldNode}. <i>Subclasses must not use this constructor</i>. Instead,
84
84
* they must use the {@link #FieldNode(int, int, String, String, String, Object)} version.
85
85
*
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
87
87
* also indicates if the field is synthetic and/or deprecated.
88
88
* @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}).
90
90
* @param signature the field's signature.
91
91
* @param value the field's initial value. This parameter, which may be {@literal null} if the
92
92
* field does not have an initial value, must be an {@link Integer}, a {@link Float}, a {@link
@@ -110,10 +110,10 @@ public FieldNode(
110
110
*
111
111
* @param api the ASM API version implemented by this visitor. Must be one of the {@code
112
112
* 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
114
114
* also indicates if the field is synthetic and/or deprecated.
115
115
* @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}).
117
117
* @param signature the field's signature.
118
118
* @param value the field's initial value. This parameter, which may be {@literal null} if the
119
119
* field does not have an initial value, must be an {@link Integer}, a {@link Float}, a {@link
0 commit comments