Changeset 31581 in osm for applications/viewer/jmapviewer
- Timestamp:
- 2015-10-01T01:55:38+02:00 (9 years ago)
- Location:
- applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/JMapViewer.java
r31573 r31581 82 82 protected JButton zoomOutButton; 83 83 84 public staticenum ZOOM_BUTTON_STYLE {84 public enum ZOOM_BUTTON_STYLE { 85 85 HORIZONTAL, 86 86 VERTICAL -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/Tile.java
r31572 r31581 96 96 * @param callable to cache 97 97 */ 98 publicCachedCallable(Callable<V> callable) {98 CachedCallable(Callable<V> callable) { 99 99 this.callable = callable; 100 100 } -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/events/JMVCommandEvent.java
r30223 r31581 12 12 */ 13 13 public class JMVCommandEvent extends EventObject { 14 public staticenum COMMAND {14 public enum COMMAND { 15 15 MOVE, 16 16 ZOOM
Note:
See TracChangeset
for help on using the changeset viewer.