Class NestMembers
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.NestMembers
This class is derived from Attribute and records the classes and interfaces that are authorized to claim
membership in the nest hosted by the current class or interface. There may be at most one NestMembers attribute in a
ClassFile structure.
- See Also:
-
Field Summary
Fields inherited from class Attribute
constant_pool, EMPTY_ARRAY, length, name_index, tag -
Constructor Summary
ConstructorsConstructorDescriptionNestMembers(int nameIndex, int length, int[] classes, ConstantPool constantPool) Constructs a new NestMembers.Initialize from another object. -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class.copy(ConstantPool constantPool) Creates a deep copy of this attribute.voiddump(DataOutputStream file) Dumps NestMembers attribute to file stream in binary format.int[]Gets the classes.String[]Gets the class names.intGets the number of classes.voidsetClasses(int[] classes) Sets the classes.toString()Methods inherited from class Attribute
addAttributeReader, addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, println, readAttribute, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex
-
Constructor Details
-
NestMembers
Constructs a new NestMembers.- Parameters:
nameIndex- Index in constant pool.length- Content length in bytes.classes- Table of indices in constant pool.constantPool- Array of constants.
-
NestMembers
Initialize from another object. Note that both objects use the same references (shallow copy). Use copy() for a physical copy.- Parameters:
c- Source to copy.
-
-
Method Details
-
accept
Called by objects that are traversing the nodes of the tree implicitly defined by the contents of a Java class. I.e., the hierarchy of methods, fields, attributes, etc. spawns a tree of objects. -
copy
-
dump
Dumps NestMembers attribute to file stream in binary format.- Overrides:
dumpin classAttribute- Parameters:
file- Output file stream.- Throws:
IOException- Thrown if an I/O error occurs.
-
getClasses
Gets the classes.- Returns:
- array of indices into constant pool of class names.
-
getClassNames
-
getNumberClasses
-
setClasses
Sets the classes.- Parameters:
classes- The list of class indexes Also redefines number_of_classes according to table length.
-
toString
-