![]() |
|
Contents |
serialVersionUID fields are explicitly declared as a performance optimization, not as a guarantee of serialization compatibility. | ProgressMonitor | ( | Component | parentComponent, | |
| Object | message, | |||
| String | note, | |||
| int | min, | |||
| int | max | |||
| ) |
| void setProgress | ( | int | progress | ) |
| void close | ( | ) |
| int getMinimum | ( | ) |
| void setMinimum | ( | int | min | ) |
| int getMaximum | ( | ) |
| void setMaximum | ( | int | max | ) |
| boolean isCanceled | ( | ) |
| void setMillisToDecideToPopup | ( | int | millisToDecideToPopup | ) |
| int getMillisToDecideToPopup | ( | ) |
| void setMillisToPopup | ( | int | millisToPopup | ) |
| int getMillisToPopup | ( | ) |
| void setNote | ( | String | note | ) |
| String getNote | ( | ) |
| AccessibleContext getAccessibleContext | ( | ) |
Implements Accessible.
| void startShouldShowTimer | ( | ) | [private] |
| void showDialog | ( | ) | [private] |
| boolean progressVisible | ( | int | oldProgress, | |
| int | newProgress | |||
| ) | [private] |
Action cancelAction [private] |
Initial value:
new AbstractAction() { private static final long serialVersionUID = 1L; public void actionPerformed(ActionEvent e) { close(); isCancelled = true; } }
AccessibleContext accessibleContext [protected] |
final int DEFAULT_MILLIS_TO_DECIDE = 500 [static, private] |
final int DEFAULT_MILLIS_TO_POPUP = 2000 [static, private] |
int millisToDecideToPopup = DEFAULT_MILLIS_TO_DECIDE [private] |
int millisToPopup = DEFAULT_MILLIS_TO_POPUP [private] |
Timer shouldShowTimer [private] |
int max [private] |
int min [private] |
int progress [private] |
JProgressBar progressBar [private] |
JDialog progressDialog [private] |
Component parentComponent [private] |
Object message [private] |
boolean shouldShow [private] |
boolean isCancelled [private] |