Interface Progress
-
- All Known Implementing Classes:
ProgressBarImpl
public interface Progress
Interface for progress indicator- Author:
- bfvdonge
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancel()
java.lang.String
getCaption()
int
getMaximum()
int
getMinimum()
int
getValue()
void
inc()
boolean
isCancelled()
boolean
isIndeterminate()
void
setCaption(java.lang.String message)
void
setIndeterminate(boolean makeIndeterminate)
void
setMaximum(int value)
void
setMinimum(int value)
void
setValue(int value)
-
-
-
Method Detail
-
setMinimum
void setMinimum(int value)
-
setMaximum
void setMaximum(int value)
-
setValue
void setValue(int value)
-
setCaption
void setCaption(java.lang.String message)
-
getCaption
java.lang.String getCaption()
-
getValue
int getValue()
-
inc
void inc()
-
setIndeterminate
void setIndeterminate(boolean makeIndeterminate)
-
isIndeterminate
boolean isIndeterminate()
-
getMinimum
int getMinimum()
-
getMaximum
int getMaximum()
-
isCancelled
boolean isCancelled()
-
cancel
void cancel()
-
-