Class Code

java.lang.Object
org.aspectj.apache.bcel.classfile.Attribute
org.aspectj.apache.bcel.classfile.Code
All Implemented Interfaces:
Serializable, Cloneable, Node

public final class Code extends Attribute
This class represents a chunk of Java byte code contained in a method. It is instantiated by the Attribute.readAttribute() method. A Code attribute contains informations about operand stack, local variables, byte code and the exceptions handled within this method. This attribute has attributes itself, namely LineNumberTable which is used for debugging purposes and LocalVariableTable which contains information about the local variables.
Version:
$Id: Code.java,v 1.9 2009/10/05 17:35:36 aclement Exp $
Author:
M. Dahm
See Also: