|
Venice 0.7beta | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ProgressDialog
This interface defines the functions that a progress dialog class should have.
It's purpose is to allow us to create a PrimaryProgressDialog
and a
SecondaryProgressDialog
where the secondary progress dialog proxies to
the first.
See ProgressDialogManager
for details about using progress dialogs in
venice.
Method Summary | |
---|---|
void |
decrement()
Decrement current progress by one unit. |
int |
getMaximum()
Get the maximum progress value. |
int |
getMinimum()
Get the minimum progress value. |
java.lang.String |
getNote()
Get the note or rather the action we are curently waiting for. |
int |
getProgress()
Get current progress value. |
void |
hide()
Close the dialog window. |
void |
increment()
Increment current progress by one unit. |
boolean |
isIndeterminate()
Return whether the dialog is indeterminate. |
boolean |
isMaster()
Query if the dialog is a master dialog. |
void |
setIndeterminate(boolean indeterminate)
Set whether the dialog is indeterminate. |
void |
setMaster(boolean master)
Set whether dialog is a master dialog. |
void |
setMaximum(int maximum)
Get the maximum progress value. |
void |
setMinimum(int minimum)
Set the minimum progress value. |
void |
setNote(java.lang.String note)
Set the note or rather the action we are curently waiting for. |
void |
setProgress(int progress)
Set current progress value. |
void |
show(java.lang.String title)
Show the dialog window. |
Method Detail |
---|
void hide()
void show(java.lang.String title)
title
- the title should be set to the task that we are performing,
which is not necessarily the action we are waiting for.
e.g. the task might be "Graph CBA", but the action we are
waiting for would be "Load CBA Quotes".java.lang.String getNote()
void setNote(java.lang.String note)
note
- the action we are waiting forint getMinimum()
void setMinimum(int minimum)
minimum
- the minimum progress valueint getMaximum()
void setMaximum(int maximum)
maximum
- the maximum progress valueint getProgress()
void setProgress(int progress)
progress
- New value of property progressvoid increment()
void decrement()
boolean isIndeterminate()
true
if no progress is displayedvoid setIndeterminate(boolean indeterminate)
indeterminate
- true
if no progress can be displayedvoid setMaster(boolean master)
master
- whether the dialog is a master dialogProgressDialogManager
boolean isMaster()
ProgressDialogManager
|
Venice 0.7beta | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |