Class InnerClasses
java.lang.Object
org.aspectj.apache.bcel.classfile.Attribute
org.aspectj.apache.bcel.classfile.InnerClasses
- All Implemented Interfaces:
Serializable,Cloneable,Node
This class is derived from Attribute and denotes that this class is an Inner class of another. to the source file of
this class. It is instantiated from the Attribute.readAttribute() method.
- Version:
- $Id: InnerClasses.java,v 1.5 2009/09/15 19:40:12 aclement Exp $
- Author:
- M. Dahm
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionInnerClasses(int name_index, int length, InnerClass[] inner_classes, ConstantPool constant_pool) Initialize from another object. -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.final voiddump(DataOutputStream file) Dump source file attribute to file stream in binary format.final InnerClass[]final voidsetInnerClasses(InnerClass[] inner_classes) final StringtoString()Methods inherited from class org.aspectj.apache.bcel.classfile.Attribute
getConstantPool, getLength, getName, getNameIndex, getTag, readAttribute
-
Constructor Details
-
InnerClasses
Initialize from another object. Note that both objects use the same references (shallow copy). Use clone() for a physical copy. -
InnerClasses
public InnerClasses(int name_index, int length, InnerClass[] inner_classes, ConstantPool constant_pool) - Parameters:
name_index- Index in constant pool to CONSTANT_Utf8length- Content length in bytesinner_classes- array of inner classes attributesconstant_pool- Array of constantssourcefile_index- Index in constant pool to CONSTANT_Utf8
-
-
Method Details
-
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. -
dump
Dump source file attribute to file stream in binary format.- Overrides:
dumpin classAttribute- Parameters:
file- Output file stream- Throws:
IOException
-
getInnerClasses
- Returns:
- array of inner class "records"
-
setInnerClasses
- Parameters:
inner_classes- .
-
toString
-