Class ProgressNotifier
- java.lang.Object
-
- net.ssehub.easy.instantiation.core.model.defaultInstantiators.ProgressNotifier
-
-
Constructor Summary
Constructors Constructor Description ProgressNotifier()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidnotifyProgress(int actual, int max)Notifies the tracer about the actual process in order to inform the user.static voidnotifyProgress(int actual, int max, java.lang.String description)Notifies the tracer about the actual process in order to inform the user.
-
-
-
Method Detail
-
notifyProgress
public static void notifyProgress(int actual, int max)Notifies the tracer about the actual process in order to inform the user.- Parameters:
actual- the actual step (negative disables display)max- the maximum number of steps (may vary over time, negative disables display)
-
notifyProgress
public static void notifyProgress(int actual, int max, java.lang.String description)Notifies the tracer about the actual process in order to inform the user.- Parameters:
actual- the actual step (negative disables display)max- the maximum number of steps (may vary over time, negative disables display)description- an optional description of the step
-
-