Packages

t

org.opalj.bi.reader

ElementValuePairsReader

trait ElementValuePairsReader extends AnnotationsAbstractions

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ElementValuePairsReader
  2. AnnotationsAbstractions
  3. Constant_PoolAbstractions
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Annotation <: AnyRef
    Definition Classes
    AnnotationsAbstractions
  2. abstract type CONSTANT_Utf8_info <: Constant_Pool_Entry
    Definition Classes
    Constant_PoolAbstractions
  3. abstract type ClassFile
    Definition Classes
    Constant_PoolAbstractions
  4. final type Constant_Pool = Array[Constant_Pool_Entry]
    Definition Classes
    Constant_PoolAbstractions
  5. abstract type Constant_Pool_Entry <: ConstantPoolEntry
    Definition Classes
    Constant_PoolAbstractions
  6. final type Constant_Pool_Index = Int
    Definition Classes
    Constant_PoolAbstractions
  7. type DeferredActionsStore = Buffer[(ClassFile) => ClassFile] with Constant_Pool_Entry

    A DeferredActionsStore stores all functions that need to perform post load actions.

    A DeferredActionsStore stores all functions that need to perform post load actions.

    One example is the resolution of references to attributes. (The constant pool is the only structure that is passed around and hence it is the only place where to store information/functions related to a specific class file).

    Definition Classes
    Constant_PoolAbstractions
  8. abstract type ElementValue <: AnyRef
  9. abstract type ElementValuePair <: AnyRef
  10. type ElementValuePairs = ArraySeq[ElementValuePair]
  11. type ElementValues = ArraySeq[ElementValue]

Abstract Value Members

  1. abstract def Annotation(constant_pool: Constant_Pool, type_index: Constant_Pool_Index, element_value_pairs: ElementValuePairs): Annotation
    Definition Classes
    AnnotationsAbstractions
  2. abstract def AnnotationValue(constant_pool: Constant_Pool, annotation: Annotation): ElementValue
  3. abstract def ArrayValue(constant_pool: Constant_Pool, values: ElementValues): ElementValue
  4. abstract def BooleanValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  5. abstract def ByteValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  6. abstract def CharValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  7. abstract def ClassValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  8. abstract def DoubleValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  9. abstract def ElementValuePair(constant_pool: Constant_Pool, element_name_index: Constant_Pool_Index, element_value: ElementValue): ElementValuePair
  10. abstract def EnumValue(constant_pool: Constant_Pool, type_name_index: Constant_Pool_Index, const_name_index: Constant_Pool_Index): ElementValue
  11. abstract def FloatValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  12. abstract def IntValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  13. abstract def LongValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  14. abstract def ShortValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  15. abstract def StringValue(constant_pool: Constant_Pool, const_value_index: Constant_Pool_Index): ElementValue
  16. implicit abstract val annotationType: ClassTag[Annotation]
    Definition Classes
    AnnotationsAbstractions
  17. abstract def applyDeferredActions(cp: Constant_Pool, classFile: ClassFile): ClassFile

    This method is called/needs to be called after the class file was completely loaded to perform class file specific transformations.

    This method is called/needs to be called after the class file was completely loaded to perform class file specific transformations.

    Definition Classes
    Constant_PoolAbstractions
  18. implicit abstract val constantPoolEntryType: ClassTag[Constant_Pool_Entry]
    Definition Classes
    Constant_PoolAbstractions
  19. implicit abstract val elementValuePairType: ClassTag[ElementValuePair]
  20. implicit abstract val elementValueType: ClassTag[ElementValue]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def Annotation(cp: Constant_Pool, in: DataInputStream): Annotation
    Definition Classes
    AnnotationsAbstractions
  5. def ElementValue(cp: Constant_Pool, in: DataInputStream): ElementValue

    Parses an element value.

    Parses an element value.

    From the Specification

    element_value {
       u1 tag;
       union {
         u2   const_value_index;
    
         {
           u2 type_name_index;
           u2 const_name_index;
         } enum_const_value;
    
         u2 class_info_index;
    
         annotation annotation_value;
    
         {
           u2    num_values;
           element_value values[num_values];
         } array_value;
       } value;
    }
    

  6. def ElementValuePair(cp: Constant_Pool, in: DataInputStream): ElementValuePair
  7. def ElementValuePairs(cp: Constant_Pool, in: DataInputStream): ElementValuePairs
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  18. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped