org.apache.bcel.classfile

Class Unknown

public final class Unknown extends Attribute

This class represents a reference to an unknown (i.e., application-specific) attribute of a class. It is instantiated from the Attribute.readAttribute() method. Applications that need to read in application-specific attributes should create an AttributeReader implementation and attach it via Attribute.addAttributeReader.

See Also: Attribute AttributeReader

Constructor Summary
Unknown(Unknown c)
Initialize from another object.
Unknown(int name_index, int length, byte[] bytes, ConstantPool constant_pool)
Create a non-standard attribute.
Method Summary
voidaccept(Visitor v)
Called by objects that are traversing the nodes of the tree implicitely defined by the contents of a Java class.
Attributecopy(ConstantPool _constant_pool)
voiddump(DataOutputStream file)
Dump unknown bytes to file stream.
byte[]getBytes()
StringgetName()
voidsetBytes(byte[] bytes)
StringtoString()

Constructor Detail

Unknown

public Unknown(Unknown c)
Initialize from another object. Note that both objects use the same references (shallow copy). Use clone() for a physical copy.

Unknown

public Unknown(int name_index, int length, byte[] bytes, ConstantPool constant_pool)
Create a non-standard attribute.

Parameters: name_index Index in constant pool length Content length in bytes bytes Attribute contents constant_pool Array of constants

Method Detail

accept

public void accept(Visitor v)
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.

Parameters: v Visitor object

copy

public Attribute copy(ConstantPool _constant_pool)

Returns: deep copy of this attribute

dump

public final void dump(DataOutputStream file)
Dump unknown bytes to file stream.

Parameters: file Output file stream

Throws: IOException

getBytes

public final byte[] getBytes()

Returns: data bytes.

getName

public final String getName()

Returns: name of attribute.

setBytes

public final void setBytes(byte[] bytes)

Parameters: bytes the bytes to set

toString

public final String toString()

Returns: String representation.