Uses of Interface
com.sodius.mdw.core.util.progress.ProgressMonitor

Packages that use ProgressMonitor
com.sodius.mdw.core.eval Contains the evaluation framework to launch evaluations of templates, rules and scripts. 
com.sodius.mdw.core.model.io Contains the model i/o framework, which enables to load and save models. 
com.sodius.mdw.core.util.progress Defines the progress monitor framework, which enables to report progress information and check for end-user cancellation. 
 

Uses of ProgressMonitor in com.sodius.mdw.core.eval
 

Methods in com.sodius.mdw.core.eval that return ProgressMonitor
 ProgressMonitor EvaluationContext.getProgressMonitor()
          Returns the progress monitor used to report progress information.
 

Methods in com.sodius.mdw.core.eval with parameters of type ProgressMonitor
 EvaluationResult EvaluationManager.evaluate(LaunchConfiguration configuration, ProgressMonitor monitor)
          Launches an evaluation based on the specified launch configuration.
 EvaluationResult EvaluationManager.evaluate(Project project, Evaluable evaluable, ProgressMonitor monitor)
          Launches an evaluation based on the specified project.
 

Uses of ProgressMonitor in com.sodius.mdw.core.model.io
 

Methods in com.sodius.mdw.core.model.io that return ProgressMonitor
 ProgressMonitor ConnectorContext.getProgressMonitor()
          Returns the monitor used to report progress and to check for cancellation.
 

Uses of ProgressMonitor in com.sodius.mdw.core.util.progress
 

Classes in com.sodius.mdw.core.util.progress that implement ProgressMonitor
 class NullProgressMonitor
          A default progress monitor implementation suitable for subclassing.
 class ProgressMonitorWrapper
          An abstract wrapper around a progress monitor which forwards ProgressMonitor methods to the wrapped progress monitor.
 class SubProgressMonitor
          A progress monitor that uses a given amount of work ticks from a parent monitor.
 

Methods in com.sodius.mdw.core.util.progress that return ProgressMonitor
 ProgressMonitor ProgressMonitorWrapper.getWrappedProgressMonitor()
          Returns the wrapped progress monitor.
 

Constructors in com.sodius.mdw.core.util.progress with parameters of type ProgressMonitor
ProgressMonitorWrapper(ProgressMonitor monitor)
          Creates a new wrapper around the given monitor.
SubProgressMonitor(ProgressMonitor monitor, int ticks)
          Creates a new sub-progress monitor for the given monitor.
SubProgressMonitor(ProgressMonitor monitor, int ticks, int style)
          Creates a new sub-progress monitor for the given monitor.