Changeset 35527 in osm for applications/viewer/jmapviewer/src/org
- Timestamp:
- 2020-08-23T15:33:54+02:00 (4 years ago)
- Location:
- applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/JMapViewerTree.java
r34759 r35527 28 28 private static final long serialVersionUID = 3050203054402323972L; 29 29 30 private JMapViewer map;31 private CheckBoxTree tree;32 private JPanel treePanel;33 private JSplitPane splitPane;30 private final JMapViewer map; 31 private final CheckBoxTree tree; 32 private final JPanel treePanel; 33 private final JSplitPane splitPane; 34 34 35 35 public JMapViewerTree(String name) { -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MapMarkerCircle.java
r31792 r35527 22 22 23 23 private Coordinate coord; 24 private double radius;25 private STYLE markerStyle;24 private final double radius; 25 private final STYLE markerStyle; 26 26 27 27 /** -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MapPolygonImpl.java
r33286 r35527 20 20 public class MapPolygonImpl extends MapObjectImpl implements MapPolygon { 21 21 22 private List<? extends ICoordinate> points;22 private final List<? extends ICoordinate> points; 23 23 24 24 public MapPolygonImpl(ICoordinate... points) { -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MapRectangleImpl.java
r31429 r35527 13 13 public class MapRectangleImpl extends MapObjectImpl implements MapRectangle { 14 14 15 private Coordinate topLeft;16 private Coordinate bottomRight;15 private final Coordinate topLeft; 16 private final Coordinate bottomRight; 17 17 18 18 public MapRectangleImpl(Coordinate topLeft, Coordinate bottomRight) { -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MemoryTileCache.java
r32664 r35527 125 125 */ 126 126 protected static class CacheEntry { 127 private Tile tile;127 private final Tile tile; 128 128 private CacheEntry next; 129 129 private CacheEntry prev; -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/Tile.java
r34760 r35527 91 91 private static class CachedCallable<V> implements Callable<V> { 92 92 private V result; 93 private Callable<V> callable;93 private final Callable<V> callable; 94 94 95 95 /**
Note:
See TracChangeset
for help on using the changeset viewer.