Changeset 8285 in josm for trunk/src/org/openstreetmap/josm/gui/progress
- Timestamp:
- 2015-04-28T00:49:49+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/progress/AbstractProgressMonitor.java
r7005 r8285 10 10 11 11 private static class Request { 12 AbstractProgressMonitor originator; 13 int childTicks; 14 double currentValue; 15 16 String title; 17 String customText; 18 String extraText; 19 Boolean intermediate; 20 21 boolean finishRequested; 12 private AbstractProgressMonitor originator; 13 private int childTicks; 14 private double currentValue; 15 16 private String title; 17 private String customText; 18 private String extraText; 19 private Boolean intermediate; 20 21 private boolean finishRequested; 22 22 } 23 23 … … 28 28 protected State state = State.INIT; 29 29 30 int ticksCount; 31 int ticks; 30 private int ticksCount; 31 private int ticks; 32 32 private int childTicks; 33 33
Note:
See TracChangeset
for help on using the changeset viewer.