ConstantFieldrefpublic final class ConstantFieldref extends ConstantCP This class represents a constant pool reference to a field. |
Constructors Summary |
---|
public ConstantFieldref(ConstantFieldref c)Initialize from another object.
super(Constants.CONSTANT_Fieldref, c.getClassIndex(), c.getNameAndTypeIndex());
| ConstantFieldref(DataInputStream file)Initialize instance from file data.
super(Constants.CONSTANT_Fieldref, file);
| public ConstantFieldref(int class_index, int name_and_type_index)
super(Constants.CONSTANT_Fieldref, class_index, name_and_type_index);
|
Methods Summary |
---|
public void | accept(com.sun.org.apache.bcel.internal.classfile.Visitor v)Called by objects that are traversing the nodes of the tree implicitely
defined by the contents of a Java class. I.e., the hierarchy of Fields,
fields, attributes, etc. spawns a tree of objects.
v.visitConstantFieldref(this);
|
|