Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package opalj
    Definition Classes
    org
  • package br

    In this representation of Java bytecode references to a Java class file's constant pool and to attributes are replaced by direct references to the corresponding constant pool entries.

    In this representation of Java bytecode references to a Java class file's constant pool and to attributes are replaced by direct references to the corresponding constant pool entries. This facilitates developing analyses and fosters comprehension.

    Based on the fact that indirect references to constant pool entries are resolved and replaced by direct references this representation is called the resolved representation.

    This representation of Java bytecode is considered as OPAL's standard representation for writing Scala based analyses. This representation is engineered such that it facilitates writing analyses that use pattern matching.

    Definition Classes
    opalj
  • final class Code extends Attribute with CommonAttributes with InstructionsContainer with CodeSequence[Instruction] with FilterMonadic[PCAndInstruction, Nothing]

    Representation of a method's code attribute, that is, representation of a method's implementation.

    Representation of a method's code attribute, that is, representation of a method's implementation.

    Definition Classes
    br
  • FilteredCode
c

org.opalj.br.Code

FilteredCode

class FilteredCode extends FilterMonadic[PCAndInstruction, Nothing]

Represents some filtered code. Primarily, implicitly used when a for-comprehension is used to process the code.

Linear Supertypes
FilterMonadic[PCAndInstruction, Nothing], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FilteredCode
  2. FilterMonadic
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FilteredCode(p: (PCAndInstruction) ⇒ Boolean)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def flatMap[B, That](f: (PCAndInstruction) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Nothing, B, That]): That
    Definition Classes
    FilteredCode → FilterMonadic
  10. def foreach[U](f: (PCAndInstruction) ⇒ U): Unit
    Definition Classes
    FilteredCode → FilterMonadic
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def map[B, That](f: (PCAndInstruction) ⇒ B)(implicit bf: CanBuildFrom[Nothing, B, That]): That
    Definition Classes
    FilteredCode → FilterMonadic
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final val p: (PCAndInstruction) ⇒ Boolean
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  24. def withFilter(p: (PCAndInstruction) ⇒ Boolean): FilteredCode
    Definition Classes
    FilteredCode → FilterMonadic

Inherited from FilterMonadic[PCAndInstruction, Nothing]

Inherited from AnyRef

Inherited from Any

Ungrouped