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

org.opalj.br.analyses.ProjectAnalysisApplication.scala Maven / Gradle / Ivy

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

import scala.language.implicitConversions

import java.net.URL

/**
 * Default implementation of the [[AnalysisApplication]] trait which facilitates the
 * development of analyses which are executed in one step.
 *
 * @author Michael Eichberg
 */
abstract class ProjectAnalysisApplication
    extends AnalysisApplication
    with OneStepAnalysis[URL, ReportableAnalysisResult] {

    implicit def String2BasicReport(report: String): BasicReport = BasicReport(report)

    final override val analysis: ProjectAnalysisApplication = this

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy