Package org.apache.bcel.classfile
Class StackMapTableEntry
java.lang.Object
org.apache.bcel.classfile.StackMapTableEntry
- All Implemented Interfaces:
Serializable
,Cloneable
This class represents a stack map entry recording the types of
local variables and the the of stack items at a given byte code offset.
See CLDC specification ��?5.3.1.2
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStackMapTableEntry
(int tag, int byte_code_offset_delta, int number_of_locals, StackMapType[] types_of_locals, int number_of_stack_items, StackMapType[] types_of_stack_items, ConstantPool constant_pool) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.copy()
final void
dump
(DataOutputStream file) Dump stack map entryint
final ConstantPool
int
int
void
setByteCodeOffsetDelta
(int b) final void
setConstantPool
(ConstantPool constant_pool) void
setNumberOfLocals
(int n) void
setNumberOfStackItems
(int n) void
void
final String
toString()
-
Constructor Details
-
StackMapTableEntry
public StackMapTableEntry(int tag, int byte_code_offset_delta, int number_of_locals, StackMapType[] types_of_locals, int number_of_stack_items, StackMapType[] types_of_stack_items, ConstantPool constant_pool)
-
-
Method Details
-
dump
Dump stack map entry- Parameters:
file
- Output file stream- Throws:
IOException
-
toString
-
setByteCodeOffsetDelta
public void setByteCodeOffsetDelta(int b) -
getByteCodeOffsetDelta
public int getByteCodeOffsetDelta() -
setNumberOfLocals
public void setNumberOfLocals(int n) -
getNumberOfLocals
public int getNumberOfLocals() -
setTypesOfLocals
-
getTypesOfLocals
-
setNumberOfStackItems
public void setNumberOfStackItems(int n) -
getNumberOfStackItems
public int getNumberOfStackItems() -
setTypesOfStackItems
-
getTypesOfStackItems
-
copy
- Returns:
- deep copy of this object
-
accept
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects.- Parameters:
v
- Visitor object
-
getConstantPool
- Returns:
- Constant pool used by this object.
-
setConstantPool
- Parameters:
constant_pool
- Constant pool to be used for this object.
-