es.unex.sextante.gui.core
Interface IPostProcessTaskFactory
public interface IPostProcessTaskFactory
Interface to be implemented by post process factories.
A post process factory is used to define the task that
should be performed with algorithm results, once a
SEXTANTE geoalgorithm has been executed from the SEXTANTE
GUI
- Author:
- volaya
getPostProcessTask
java.lang.Runnable getPostProcessTask(GeoAlgorithm alg)
- Returns a task to post-process the given algorithm.
This task should take the outputs generated by the algorithm,
adding them to the GUI of doing with them whatever is needed.
To be compatible with the
AdditionalResults
class,
charts and text result has to be added as java Components.
Check the documentation of that class for more information.
- Parameters:
alg
- the algorithm to post-process
- Returns:
- a task to post-process the given algorithm