Class PermittedSubclasses
java.lang.Object
org.apache.bcel.classfile.Attribute
org.apache.bcel.classfile.PermittedSubclasses
This class is derived from Attribute and records the classes and interfaces that are permitted to extend or
implement the current class or interface. There may be at most one PermittedSubclasses attribute in a ClassFile
structure.
- Since:
- 6.13.0
- See Also:
-
Field Summary
Fields inherited from class Attribute
constant_pool, EMPTY_ARRAY, length, name_index, tag -
Constructor Summary
ConstructorsConstructorDescriptionPermittedSubclasses(int nameIndex, int length, int[] classes, ConstantPool constantPool) Constructs object from table of class indices in constant pool.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 clone of this object given constant pool.voiddump(DataOutputStream file) Dumps PermittedSubclasses attribute to file stream in binary format.int[]Gets the class indices in constant pool.String[]Gets permitted class names.intGets the number of classes.voidsetClasses(int[] classes) Sets class indices.toString()String representation of PermittedSubclasses (for debugging purposes).Methods inherited from class Attribute
addAttributeReader, addAttributeReader, clone, getConstantPool, getLength, getName, getNameIndex, getTag, println, readAttribute, readAttribute, removeAttributeReader, setConstantPool, setLength, setNameIndex
-
Constructor Details
-
PermittedSubclasses
Constructs object from table of class indices in constant pool.- Parameters:
nameIndex- Index in constant pool.length- Content length in bytes.classes- Table of indices in constant pool.constantPool- Array of constants.
-
PermittedSubclasses
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
Creates a deep clone of this object given constant pool. -
dump
Dumps PermittedSubclasses 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 class indices in constant pool.- Returns:
- array of indices into constant pool of class names.
-
getClassNames
-
getNumberClasses
-
setClasses
Sets class indices.- Parameters:
classes- The list of class indexes Also redefines number_of_classes according to table length.
-
toString
-