Package proguard.classfile
Interface Member
- All Superinterfaces:
Processable,Serializable
- All Known Implementing Classes:
LibraryField,LibraryMember,LibraryMethod,ProgramField,ProgramMember,ProgramMethod
Representation of a class member (field or method).
-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(Clazz clazz, MemberVisitor memberVisitor) Accepts the given class visitor.intReturns the access flags.getDescriptor(Clazz clazz) Returns the class member's descriptor.Returns the class member name.voidreferencedClassesAccept(ClassVisitor classVisitor) Lets the Clazz objects referenced in the descriptor string accept the given visitor.Methods inherited from interface proguard.util.Processable
accept, getProcessingFlags, getProcessingInfo, setProcessingFlags, setProcessingInfo
-
Method Details
-
getAccessFlags
int getAccessFlags()Returns the access flags. -
getName
Returns the class member name. -
getDescriptor
Returns the class member's descriptor. -
accept
Accepts the given class visitor. -
referencedClassesAccept
Lets the Clazz objects referenced in the descriptor string accept the given visitor.
-