Package proguard.classfile.attribute
Class LocalVariableInfo
java.lang.Object
proguard.util.SimpleProcessable
proguard.classfile.attribute.LocalVariableInfo
- All Implemented Interfaces:
Serializable,Comparable,Processable
Representation of a local variable table entry.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionAn extra field pointing to the referenced Clazz object.intintintintintFields inherited from class proguard.util.SimpleProcessable
processingFlags, processingInfo -
Constructor Summary
ConstructorsConstructorDescriptionCreates an uninitialized LocalVariableInfo.LocalVariableInfo(int u2startPC, int u2length, int u2nameIndex, int u2descriptorIndex, int u2index) Creates an initialized LocalVariableInfo. -
Method Summary
Modifier and TypeMethodDescriptionintgetDescriptor(Clazz clazz) Returns the descriptor.Returns the name.voidreferencedClassAccept(ClassVisitor classVisitor) Lets the referenced class accept the given visitor.Methods inherited from class proguard.util.SimpleProcessable
addProcessingFlags, getProcessingFlags, getProcessingInfo, hasProcessingFlags, removeProcessingFlags, setProcessingFlags, setProcessingInfoMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface proguard.util.Processable
accept
-
Field Details
-
u2startPC
public int u2startPC -
u2length
public int u2length -
u2nameIndex
public int u2nameIndex -
u2descriptorIndex
public int u2descriptorIndex -
u2index
public int u2index -
referencedClass
An extra field pointing to the referenced Clazz object. This field is typically filled out by the.ClassReferenceInitializer
-
-
Constructor Details
-
LocalVariableInfo
public LocalVariableInfo()Creates an uninitialized LocalVariableInfo. -
LocalVariableInfo
public LocalVariableInfo(int u2startPC, int u2length, int u2nameIndex, int u2descriptorIndex, int u2index) Creates an initialized LocalVariableInfo.
-
-
Method Details
-
getName
Returns the name. -
getDescriptor
Returns the descriptor. -
referencedClassAccept
Lets the referenced class accept the given visitor. -
compareTo
- Specified by:
compareToin interfaceComparable
-