Class AnnotationDefault

  • All Implemented Interfaces:
    java.lang.Cloneable, Node

    public class AnnotationDefault
    extends Attribute
    Represents the default value of a annotation for a method info
    Since:
    6.0
    • Constructor Detail

      • AnnotationDefault

        public AnnotationDefault​(int name_index,
                                 int length,
                                 ElementValue defaultValue,
                                 ConstantPool constant_pool)
        Parameters:
        name_index - Index pointing to the name Code
        length - Content length in bytes
        defaultValue - the annotation's default value
        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.
        Specified by:
        accept in interface Node
        Specified by:
        accept in class Attribute
        Parameters:
        v - Visitor object
      • setDefaultValue

        public final void setDefaultValue​(ElementValue defaultValue)
        Parameters:
        defaultValue - the default value of this methodinfo's annotation
      • getDefaultValue

        public final ElementValue getDefaultValue()
        Returns:
        the default value
      • dump

        public final void dump​(java.io.DataOutputStream dos)
                        throws java.io.IOException
        Description copied from class: Attribute
        Dump attribute to file stream in binary format.
        Overrides:
        dump in class Attribute
        Parameters:
        dos - Output file stream
        Throws:
        java.io.IOException