Package proguard.classfile.constant
Class AnyMethodrefConstant
java.lang.Object
proguard.util.SimpleProcessable
proguard.classfile.constant.Constant
proguard.classfile.constant.RefConstant
proguard.classfile.constant.AnyMethodrefConstant
- All Implemented Interfaces:
Serializable,Processable
- Direct Known Subclasses:
InterfaceMethodrefConstant,MethodrefConstant
This
Constant represents a method reference constant in the constant pool.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionAn extra field optionally pointing to the referenced Method object.Fields inherited from class proguard.classfile.constant.RefConstant
referencedClass, u2classIndex, u2nameAndTypeIndexFields 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, UTF8Fields inherited from class proguard.util.SimpleProcessable
processingFlags, processingInfo -
Constructor Summary
ConstructorsConstructorDescriptionCreates an uninitialized AnyMethodrefConstant.AnyMethodrefConstant(int u2classIndex, int u2nameAndTypeIndex, Clazz referencedClass, Method referencedMethod) Creates a new AnyMethodrefConstant with the given name and type indices. -
Method Summary
Modifier and TypeMethodDescriptionvoidreferencedMemberAccept(MemberVisitor memberVisitor) Lets the referenced class member accept the given visitor.voidreferencedMethodAccept(MemberVisitor memberVisitor) Lets the referenced class method accept the given visitor.Methods inherited from class proguard.classfile.constant.RefConstant
equals, getClassIndex, getClassName, getName, getNameAndTypeIndex, getType, hashCode, referencedClassAccept, setNameAndTypeIndex, toStringMethods inherited from class proguard.classfile.constant.Constant
accept, getTag, isCategory2Methods inherited from class proguard.util.SimpleProcessable
addProcessingFlags, getProcessingFlags, getProcessingInfo, hasProcessingFlags, removeProcessingFlags, setProcessingFlags, setProcessingInfoMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface proguard.util.Processable
accept
-
Field Details
-
referencedMethod
An extra field optionally pointing to the referenced Method object. This field is typically filled out by the.ClassReferenceInitializer
-
-
Constructor Details
-
AnyMethodrefConstant
public AnyMethodrefConstant()Creates an uninitialized AnyMethodrefConstant. -
AnyMethodrefConstant
public AnyMethodrefConstant(int u2classIndex, int u2nameAndTypeIndex, Clazz referencedClass, Method referencedMethod) Creates a new AnyMethodrefConstant with the given name and type indices.- Parameters:
u2classIndex- the index of the class in the constant pool.u2nameAndTypeIndex- the index of the name and type entry in the constant pool.referencedClass- the referenced class.referencedMethod- the referenced method.
-
-
Method Details
-
referencedMethodAccept
Lets the referenced class method accept the given visitor. -
referencedMemberAccept
Description copied from class:RefConstantLets the referenced class member accept the given visitor.- Specified by:
referencedMemberAcceptin classRefConstant
-