Packages

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()

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 analyze(theProject: Project[URL], parameters: Seq[String], initProgressManagement: (Int) ⇒ ProgressManagement): BugPickerResults

    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
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. def copyright: String
    Definition Classes
    Analysis
  8. def description: String
    Definition Classes
    BugPickerAnalysis → Analysis
  9. def documentationUrl: Option[String]
    Definition Classes
    Analysis
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def title: String
    Definition Classes
    BugPickerAnalysis → Analysis
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Analysis[URL, BugPickerResults]

Inherited from AnyRef

Inherited from Any

Ungrouped