com.sun.tools.classfile
Class DefaultAttribute

java.lang.Object
  extended by com.sun.tools.classfile.Attribute
      extended by com.sun.tools.classfile.DefaultAttribute

public class DefaultAttribute
extends Attribute


Nested Class Summary
 
Nested classes/interfaces inherited from class com.sun.tools.classfile.Attribute
Attribute.Factory, Attribute.Visitor<R,P>
 
Field Summary
 byte[] info
           
 
Fields inherited from class com.sun.tools.classfile.Attribute
AnnotationDefault, attribute_length, attribute_name_index, CharacterRangeTable, Code, CompilationID, ConstantValue, Deprecated, EnclosingMethod, Exceptions, InnerClasses, LineNumberTable, LocalVariableTable, LocalVariableTypeTable, Module, ModuleExportTable, ModuleMemberTable, RuntimeInvisibleAnnotations, RuntimeInvisibleParameterAnnotations, RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations, Signature, SourceDebugExtension, SourceFile, SourceID, StackMap, StackMapTable, Synthetic
 
Constructor Summary
DefaultAttribute(ClassReader cr, int name_index, byte[] data)
           
DefaultAttribute(ConstantPool constant_pool, int name_index, byte[] info)
           
 
Method Summary
<R,P> R
accept(Attribute.Visitor<R,P> visitor, P p)
           
 
Methods inherited from class com.sun.tools.classfile.Attribute
getName, read
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

info

public final byte[] info
Constructor Detail

DefaultAttribute

DefaultAttribute(ClassReader cr,
                 int name_index,
                 byte[] data)

DefaultAttribute

public DefaultAttribute(ConstantPool constant_pool,
                        int name_index,
                        byte[] info)
Method Detail

accept

public <R,P> R accept(Attribute.Visitor<R,P> visitor,
                      P p)
Specified by:
accept in class Attribute