Changeset 11673 in josm for trunk/src/org
- Timestamp:
- 2017-03-05T00:15:30+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/PleaseWaitDialog.java
r11672 r11673 213 213 * Sets the maximum progress value. 214 214 * @param progressBarMax The value that represents the rightmost point of the progress bar (100%). 215 * @since 11672 215 216 */ 216 217 public void setMaximumProgress(int progressBarMax) { -
trunk/src/org/openstreetmap/josm/gui/progress/PleaseWaitProgressMonitor.java
r11672 r11673 26 26 void setVisible(boolean visible); 27 27 28 /** 29 * Updates the progress value to the specified progress. 30 * @param progress The progress as integer. Between 0 and {@link PleaseWaitProgressMonitor#PROGRESS_BAR_MAX} 31 */ 28 32 void updateProgress(int progress); 29 33 … … 38 42 } 39 43 44 /** 45 * The maximum value the progress bar that displays the current progress should have. 46 */ 40 47 public static final int PROGRESS_BAR_MAX = 10_000; 41 48 private final Component dialogParent;
Note:
See TracChangeset
for help on using the changeset viewer.