Class StackMapEntry
- java.lang.Object
-
- org.aspectj.apache.bcel.classfile.StackMapEntry
-
-
Constructor Summary
Constructors Constructor Description StackMapEntry(int byte_code_offset, int number_of_locals, StackMapType[] types_of_locals, int number_of_stack_items, StackMapType[] types_of_stack_items, ConstantPool constant_pool)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(ClassVisitor v)StackMapEntrycopy()voiddump(DataOutputStream file)intgetByteCodeOffset()ConstantPoolgetConstantPool()intgetNumberOfLocals()intgetNumberOfStackItems()StackMapType[]getTypesOfLocals()StackMapType[]getTypesOfStackItems()voidsetByteCodeOffset(int b)voidsetConstantPool(ConstantPool constant_pool)voidsetNumberOfLocals(int n)voidsetNumberOfStackItems(int n)voidsetTypesOfLocals(StackMapType[] t)voidsetTypesOfStackItems(StackMapType[] t)StringtoString()
-
-
-
Constructor Detail
-
StackMapEntry
public StackMapEntry(int byte_code_offset, int number_of_locals, StackMapType[] types_of_locals, int number_of_stack_items, StackMapType[] types_of_stack_items, ConstantPool constant_pool)
-
-
Method Detail
-
dump
public final void dump(DataOutputStream file) throws IOException
- Throws:
IOException
-
setByteCodeOffset
public void setByteCodeOffset(int b)
-
getByteCodeOffset
public int getByteCodeOffset()
-
setNumberOfLocals
public void setNumberOfLocals(int n)
-
getNumberOfLocals
public int getNumberOfLocals()
-
setTypesOfLocals
public void setTypesOfLocals(StackMapType[] t)
-
getTypesOfLocals
public StackMapType[] getTypesOfLocals()
-
setNumberOfStackItems
public void setNumberOfStackItems(int n)
-
getNumberOfStackItems
public int getNumberOfStackItems()
-
setTypesOfStackItems
public void setTypesOfStackItems(StackMapType[] t)
-
getTypesOfStackItems
public StackMapType[] getTypesOfStackItems()
-
copy
public StackMapEntry copy()
-
accept
public void accept(ClassVisitor v)
-
getConstantPool
public final ConstantPool getConstantPool()
-
setConstantPool
public final void setConstantPool(ConstantPool constant_pool)
-
-