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

org.opalj.support.debug.ConfigurableXHTMLTracer.scala Maven / Gradle / Ivy

/* BSD 2-Clause License - see OPAL/LICENSE for details. */
package org.opalj.support.debug

import org.opalj.ai.AIResult

/**
 * The standard XHTML tracer which optionally generates some output.
 *
 * @author Michael Eichberg
 */
class ConfigurableXHTMLTracer(openDumpOnResult: Boolean = false) extends XHTMLTracer {

    override def result(result: AIResult): Unit = if (openDumpOnResult) super.result(result)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy