Package com.nomagic.task
Interface ProgressStatus
-
- All Known Implementing Classes:
EmptyProgressStatus,ProgressMonitorAdapter.ProgressStatusAdapter,SimpleProgressStatus
@OpenApiAll public interface ProgressStatusProgress status interface. Usually used when performing long task to show task progress status. Can be implemented in various ways, represented in GUI.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCurrent()Get current progress value.java.lang.StringgetDescription()Get progress description.longgetMax()Get progress maximum value.longgetMin()Get progress minimum value.intgetPercentage()Get completed percentage.voidincrease()Increment progress current value.voidinit(java.lang.String description, long max)Initialize progress.voidinit(java.lang.String description, long min, long max)Initialize progress.voidinit(java.lang.String description, long min, long max, long current)Initialize progress.booleanisCancel()booleanisCompleted()Checks if progress status completed.booleanisIndeterminate()Checks if progres status is indeterminate,booleanisLocked()Check if progress status is locked.voidreset()Reset progress status.voidsetCancel(boolean cancel)Call this when want current operation be canceled.voidsetCurrent(long current)Set progress current value.voidsetDescription(java.lang.String description)Set progress description.voidsetIndeterminate(boolean indeterminate)Set progress status as indeterminate.voidsetLocked(boolean lock)Lock the progress status.voidsetMax(long max)Set progress maximum value.voidsetMin(long min)Set progress minimum value.
-
-
-
Method Detail
-
setMin
void setMin(long min)
Set progress minimum value.- Parameters:
min-
-
setMax
void setMax(long max)
Set progress maximum value.- Parameters:
max-
-
setCurrent
void setCurrent(long current)
Set progress current value.- Parameters:
current-
-
setDescription
void setDescription(java.lang.String description)
Set progress description.- Parameters:
description-
-
getPercentage
int getPercentage()
Get completed percentage.- Returns:
-
getMin
long getMin()
Get progress minimum value.- Returns:
-
getMax
long getMax()
Get progress maximum value.- Returns:
-
getCurrent
long getCurrent()
Get current progress value.- Returns:
-
getDescription
java.lang.String getDescription()
Get progress description.- Returns:
-
reset
void reset()
Reset progress status.
-
increase
void increase()
Increment progress current value.
-
init
void init(java.lang.String description, long min, long max, long current)Initialize progress.- Parameters:
description- progress description.min- minimum value.max- maximum value.current- current value.
-
init
void init(java.lang.String description, long min, long max)Initialize progress.- Parameters:
description- progress description.min- minimum value.max- maximum value.
-
init
void init(java.lang.String description, long max)Initialize progress.- Parameters:
description- progress description.max- maximum value.
-
isCompleted
boolean isCompleted()
Checks if progress status completed.- Returns:
-
setIndeterminate
void setIndeterminate(boolean indeterminate)
Set progress status as indeterminate.- Parameters:
indeterminate-
-
isIndeterminate
boolean isIndeterminate()
Checks if progres status is indeterminate,- Returns:
-
setLocked
void setLocked(boolean lock)
Lock the progress status. Locked status does not change progress value.- Parameters:
lock-
-
isLocked
boolean isLocked()
Check if progress status is locked.- Returns:
-
setCancel
void setCancel(boolean cancel)
Call this when want current operation be canceled. Actual operation can not support cancel.- Parameters:
cancel- new cancel value.
-
isCancel
boolean isCancel()
- Returns:
- true if current operation is requested to be canceled.
-
-