
org.opalj.br.reader.ModulePackages_attributeBinding.scala Maven / Gradle / Ivy
The newest version!
/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj
package br
package reader
import org.opalj.bi.reader.ModulePackages_attributeReader
import scala.collection.immutable.ArraySeq
/**
* The factory method to create the `ModulePackages` attribute (Java 9).
*
* @author Michael Eichberg
*/
trait ModulePackages_attributeBinding
extends ModulePackages_attributeReader
with ConstantPoolBinding
with AttributeBinding {
type ModulePackages_attribute = ModulePackages
def ModulePackages_attribute(
cp: Constant_Pool,
ap_name_index: Constant_Pool_Index,
ap_descriptor_index: Constant_Pool_Index,
attribute_name_index: Constant_Pool_Index,
package_index_table: PackageIndexTable
): ModulePackages_attribute = {
new ModulePackages(
ArraySeq.from(package_index_table).map { p => cp(p).asPackageIdentifier(cp) }
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy