Class/Object

org.opalj.bugpicker.core.analyses

BugPickerAnalysis

Related Docs: object BugPickerAnalysis | package analyses

Permalink

class BugPickerAnalysis extends Analysis[URL, BugPickerResults]

Wrapper around several analyses that analyze the control- and data-flow to identify various issues in the source code of projects.

Precision

The analyses are designed such that they try to avoid to report false positives to facilitate usage of the BugPicker. However, given that we analyze Java bytecode, some findings may be the result of the compilation scheme employed by the compiler and, hence, cannot be resolved at the source code level. This is in particular true for finally blocks in Java programs. In this case compilers typically include the same block two (or more) times in the code. Furthermore, Java reflection and reflection-like mechanisms are also a source of false positives.

Linear Supertypes
Analysis[URL, BugPickerResults], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BugPickerAnalysis
  2. Analysis
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BugPickerAnalysis()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def analyze(theProject: Project[URL], parameters: Seq[String], initProgressManagement: (Int) ⇒ ProgressManagement): BugPickerResults

    Permalink

    Executes the analysis of the project's concrete methods.

    Executes the analysis of the project's concrete methods.

    parameters

    A list of (optional) parameters. The parameters that are matched are defined by: BugPickerAnalysis.MaxEvalFactorPattern, BugPickerAnalysis.MaxEvalTimePattern, BugPickerAnalysis.MaxCardinalityOfIntegerRangesPattern, BugPickerAnalysis.MaxCardinalityOfLongSetsPattern, BugPickerAnalysis.MaxCallChainLengthPattern, and "-debug".

    Definition Classes
    BugPickerAnalysis → Analysis
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def copyright: String

    Permalink
    Definition Classes
    Analysis
  8. def description: String

    Permalink
    Definition Classes
    BugPickerAnalysis → Analysis
  9. def documentationUrl: Option[String]

    Permalink
    Definition Classes
    Analysis
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def title: String

    Permalink
    Definition Classes
    BugPickerAnalysis → Analysis
  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Analysis[URL, BugPickerResults]

Inherited from AnyRef

Inherited from Any

Ungrouped