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
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(java.io.DataOutputStream file)
throws java.io.IOException
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.