SiLeBAT/FSK-Lab

View on GitHub
de.bund.bfr.knime.fsklab.nodes.common/src/de/bund/bfr/knime/fsklab/nodes/plot/ModelPlotter.java

Summary

Maintainability
A
0 mins
Test Coverage
package de.bund.bfr.knime.fsklab.nodes.plot;

import java.io.File;

public interface ModelPlotter {

  /**
   * @param file
   * @param script
   * @throws Exception
   */
  public void plotPng(File file, String script) throws Exception;
  
  public void plotSvg(File file, String script) throws Exception;
}