All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opalj.bi.reader.Unknown_attributeReader.scala Maven / Gradle / Ivy

The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package bi
package reader

import java.io.DataInputStream

/**
 * A generic reader that can read attributes that are neither defined by the
 * specification nor by some additional user supplied code.
 */
trait Unknown_attributeReader extends Constant_PoolAbstractions with Unknown_attributeAbstractions {

    //
    // TYPE DEFINITIONS AND FACTORY METHODS
    //

    def Unknown_attribute(
        cp:                   Constant_Pool,
        ap_name_index:        Constant_Pool_Index,
        ap_descriptor_index:  Constant_Pool_Index,
        attribute_name_index: Constant_Pool_Index,
        info:                 Array[Byte]
    ): Unknown_attribute

    //
    // IMPLEMENTATION
    //

    def Unknown_attribute(
        cp:                   Constant_Pool,
        ap:                   AttributeParent,
        ap_name_index:        Constant_Pool_Index,
        ap_descriptor_index:  Constant_Pool_Index,
        attribute_name_index: Constant_Pool_Index,
        in:                   DataInputStream
    ): Unknown_attribute = {
        val info = new Array[Byte](in.readInt)
        in.readFully(info)

        Unknown_attribute(cp, ap_name_index, ap_descriptor_index, attribute_name_index, info)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy