org.apache.tomcat.util.bcel.classfile
Class StackMapTableEntry
java.lang.Object
org.apache.tomcat.util.bcel.classfile.StackMapTableEntry
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public final class StackMapTableEntry
- extends java.lang.Object
- implements java.lang.Cloneable, java.io.Serializable
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: StackMapTableEntry.java 1181133 2011-10-10 18:49:14Z markt $
- Author:
- M. Dahm
- See Also:
StackMap
,
StackMapType
,
Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
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)
dump
public final void dump(java.io.DataOutputStream file)
throws java.io.IOException
- Dump stack map entry
- Parameters:
file
- Output file stream
- Throws:
java.io.IOException
toString
public final java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
- Returns:
- String representation.
copy
public StackMapTableEntry copy()
- Returns:
- deep copy of this object
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.