Class StackMapEntry
java.lang.Object
org.aspectj.apache.bcel.classfile.StackMapEntry
- All Implemented Interfaces:
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
- Version:
- $Id: StackMapEntry.java,v 1.5 2008/05/28 23:53:02 aclement Exp $
- Author:
- M. Dahm
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStackMapEntry(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
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.copy()final voiddump(DataOutputStream file) Dump stack map entryintfinal ConstantPoolintintvoidsetByteCodeOffset(int b) final voidsetConstantPool(ConstantPool constant_pool) voidsetNumberOfLocals(int n) voidsetNumberOfStackItems(int n) voidvoidfinal StringtoString()
-
Constructor Details
-
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 Details
-
dump
Dump stack map entry- Parameters:
file- Output file stream- Throws:
IOException
-
toString
-
setByteCodeOffset
public void setByteCodeOffset(int b) -
getByteCodeOffset
public int getByteCodeOffset() -
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.
-