Class ParameterAnnotations

    • Field Detail

      • parameter_annotation_table

        private ParameterAnnotationEntry[] parameter_annotation_table
        Table of parameter annotations
    • Constructor Detail

      • ParameterAnnotations

        ParameterAnnotations​(byte parameter_annotation_type,
                             int name_index,
                             int length,
                             java.io.DataInput input,
                             ConstantPool constant_pool)
                      throws java.io.IOException
        Parameters:
        parameter_annotation_type - the subclass type of the parameter annotation
        name_index - Index pointing to the name Code
        length - Content length in bytes
        input - Input stream
        constant_pool - Array of constants
        Throws:
        java.io.IOException
      • ParameterAnnotations

        public ParameterAnnotations​(byte parameter_annotation_type,
                                    int name_index,
                                    int length,
                                    ParameterAnnotationEntry[] parameter_annotation_table,
                                    ConstantPool constant_pool)
        Parameters:
        parameter_annotation_type - the subclass type of the parameter annotation
        name_index - Index pointing to the name Code
        length - Content length in bytes
        parameter_annotation_table - the actual parameter annotations
        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
      • setParameterAnnotationTable

        public final void setParameterAnnotationTable​(ParameterAnnotationEntry[] parameter_annotation_table)
        Parameters:
        parameter_annotation_table - the entries to set in this parameter annotation
      • getParameterAnnotationTable

        public final ParameterAnnotationEntry[] getParameterAnnotationTable()
        Returns:
        the parameter annotation entry table
      • getParameterAnnotationEntries

        public ParameterAnnotationEntry[] getParameterAnnotationEntries()
        returns the array of parameter annotation entries in this parameter annotation
      • dump

        public 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