Class DefaultScriptableWorkflowStep

java.lang.Object
qupath.lib.plugins.workflow.DefaultScriptableWorkflowStep
All Implemented Interfaces:
Serializable, ScriptableWorkflowStep, WorkflowStep

public class DefaultScriptableWorkflowStep extends Object implements ScriptableWorkflowStep
A scriptable workflow step where the script is provided directly as an argument.
Author:
Pete Bankhead
See Also:
  • Constructor Details

    • DefaultScriptableWorkflowStep

      public DefaultScriptableWorkflowStep(String name, Map<String,?> parameterMap, String script)
      Constructor that takes a parameter map for display.

      The parameter map isn't embedded in the script by default - this script that is passed should be complete.

      Parameters:
      name -
      parameterMap -
      script -
    • DefaultScriptableWorkflowStep

      public DefaultScriptableWorkflowStep(String name, String script)
      Create a workflow step using a provided script string that will be called as-is.
      Parameters:
      name -
      script -
  • Method Details