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

org.opalj.br.ParameterAnnotationTable.scala Maven / Gradle / Ivy

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

/**
 * Parameter annotations.
 *
 * @author Michael Eichberg
 */
trait ParameterAnnotationTable extends Attribute {

    def parameterAnnotations: ParameterAnnotations

    def isRuntimeVisible: Boolean

    override def similar(other: Attribute, config: SimilarityTestConfiguration): Boolean = this == other

}

object ParameterAnnotationTable {

    def unapply(paa: ParameterAnnotationTable): Option[(Boolean, ParameterAnnotations)] = {
        Some((paa.isRuntimeVisible, paa.parameterAnnotations))
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy