Package au.edu.qut.prom.helpers
Class ConsoleProgress
- java.lang.Object
-
- au.edu.qut.prom.helpers.ConsoleProgress
-
- All Implemented Interfaces:
org.processmining.framework.plugin.Progress
public class ConsoleProgress extends java.lang.Object implements org.processmining.framework.plugin.Progress
-
-
Constructor Summary
Constructors Constructor Description ConsoleProgress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcancel()java.lang.StringgetCaption()intgetMaximum()intgetMinimum()intgetValue()voidinc()booleanisCancelled()booleanisIndeterminate()voidsetCaption(java.lang.String message)voidsetIndeterminate(boolean makeIndeterminate)voidsetMaximum(int value)voidsetMinimum(int value)voidsetValue(int value)
-
-
-
Method Detail
-
setValue
public void setValue(int value)
- Specified by:
setValuein interfaceorg.processmining.framework.plugin.Progress
-
setMinimum
public void setMinimum(int value)
- Specified by:
setMinimumin interfaceorg.processmining.framework.plugin.Progress
-
setMaximum
public void setMaximum(int value)
- Specified by:
setMaximumin interfaceorg.processmining.framework.plugin.Progress
-
setIndeterminate
public void setIndeterminate(boolean makeIndeterminate)
- Specified by:
setIndeterminatein interfaceorg.processmining.framework.plugin.Progress
-
setCaption
public void setCaption(java.lang.String message)
- Specified by:
setCaptionin interfaceorg.processmining.framework.plugin.Progress
-
isIndeterminate
public boolean isIndeterminate()
- Specified by:
isIndeterminatein interfaceorg.processmining.framework.plugin.Progress
-
isCancelled
public boolean isCancelled()
- Specified by:
isCancelledin interfaceorg.processmining.framework.plugin.Progress
-
inc
public void inc()
- Specified by:
incin interfaceorg.processmining.framework.plugin.Progress
-
getValue
public int getValue()
- Specified by:
getValuein interfaceorg.processmining.framework.plugin.Progress
-
getMinimum
public int getMinimum()
- Specified by:
getMinimumin interfaceorg.processmining.framework.plugin.Progress
-
getMaximum
public int getMaximum()
- Specified by:
getMaximumin interfaceorg.processmining.framework.plugin.Progress
-
getCaption
public java.lang.String getCaption()
- Specified by:
getCaptionin interfaceorg.processmining.framework.plugin.Progress
-
cancel
public void cancel()
- Specified by:
cancelin interfaceorg.processmining.framework.plugin.Progress
-
-