Package proguard.classfile.constant
Class RefConstant
- java.lang.Object
-
- proguard.util.SimpleProcessable
-
- proguard.classfile.constant.Constant
-
- proguard.classfile.constant.RefConstant
-
- All Implemented Interfaces:
java.io.Serializable,Processable
- Direct Known Subclasses:
AnyMethodrefConstant,FieldrefConstant
public abstract class RefConstant extends Constant
ThisConstantrepresents a ref constant in the constant pool.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description ClazzreferencedClassAn extra field pointing to the referenced Clazz object.intu2classIndexintu2nameAndTypeIndex-
Fields inherited from class proguard.classfile.constant.Constant
CLASS, DOUBLE, DYNAMIC, FIELDREF, FLOAT, INTEGER, INTERFACE_METHODREF, INVOKE_DYNAMIC, LONG, METHOD_HANDLE, METHOD_TYPE, METHODREF, MODULE, NAME_AND_TYPE, PACKAGE, PRIMITIVE_ARRAY, STRING, UTF8
-
Fields inherited from class proguard.util.SimpleProcessable
processingFlags, processingInfo
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRefConstant()Creates an uninitialized RefConstant.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object object)intgetClassIndex()Returns the class index.java.lang.StringgetClassName(Clazz clazz)Returns the class name.java.lang.StringgetName(Clazz clazz)Returns the method/field name.intgetNameAndTypeIndex()Returns the name-and-type index.java.lang.StringgetType(Clazz clazz)Returns the type.inthashCode()voidreferencedClassAccept(ClassVisitor classVisitor)Lets the referenced class accept the given visitor.abstract voidreferencedMemberAccept(MemberVisitor memberVisitor)Lets the referenced class member accept the given visitor.voidsetNameAndTypeIndex(int index)Sets the name-and-type index.java.lang.StringtoString()-
Methods inherited from class proguard.classfile.constant.Constant
accept, getTag, isCategory2
-
Methods inherited from class proguard.util.SimpleProcessable
addProcessingFlags, getProcessingFlags, getProcessingInfo, hasProcessingFlags, removeProcessingFlags, setProcessingFlags, setProcessingInfo
-
-
-
-
Field Detail
-
u2classIndex
public int u2classIndex
-
u2nameAndTypeIndex
public int u2nameAndTypeIndex
-
referencedClass
public Clazz referencedClass
An extra field pointing to the referenced Clazz object. This field is typically filled out by the.ClassReferenceInitializer
-
-
Method Detail
-
getClassIndex
public int getClassIndex()
Returns the class index.
-
getNameAndTypeIndex
public int getNameAndTypeIndex()
Returns the name-and-type index.
-
setNameAndTypeIndex
public void setNameAndTypeIndex(int index)
Sets the name-and-type index.
-
getClassName
public java.lang.String getClassName(Clazz clazz)
Returns the class name.
-
getName
public java.lang.String getName(Clazz clazz)
Returns the method/field name.
-
getType
public java.lang.String getType(Clazz clazz)
Returns the type.
-
referencedClassAccept
public void referencedClassAccept(ClassVisitor classVisitor)
Lets the referenced class accept the given visitor.
-
referencedMemberAccept
public abstract void referencedMemberAccept(MemberVisitor memberVisitor)
Lets the referenced class member accept the given visitor.
-
equals
public boolean equals(java.lang.Object object)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-