Package org.scijava.module.process
Class SaveInputsPreprocessor
- java.lang.Object
-
- org.scijava.AbstractContextual
-
- org.scijava.module.process.AbstractPreprocessorPlugin
-
- org.scijava.module.process.SaveInputsPreprocessor
-
- All Implemented Interfaces:
Cancelable,Contextual,ModulePreprocessor,ModuleProcessor,PreprocessorPlugin,SciJavaPlugin
public class SaveInputsPreprocessor extends AbstractPreprocessorPlugin
A preprocessor for saving populated input values to persistent storage.This preprocessor runs late in the chain, giving other preprocessors every chance to populate the inputs first. In particular, it executes after the
InputHarvesterhas run, so that user-specified values are persisted for next time.- Author:
- Curtis Rueden
-
-
Field Summary
Fields Modifier and Type Field Description static doublePRIORITY
-
Constructor Summary
Constructors Constructor Description SaveInputsPreprocessor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocess(Module module)Performs a processing step on the given module instance.-
Methods inherited from class org.scijava.module.process.AbstractPreprocessorPlugin
cancel, getCancelReason, isCanceled
-
Methods inherited from class org.scijava.AbstractContextual
context, getContext
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.scijava.Contextual
context, getContext, setContext
-
-
-
-
Field Detail
-
PRIORITY
public static final double PRIORITY
- See Also:
- Constant Field Values
-
-
Method Detail
-
process
public void process(Module module)
Description copied from interface:ModuleProcessorPerforms a processing step on the given module instance.
-
-