Changeset 32910 in osm
- Timestamp:
- 2016-09-03T16:54:03+02:00 (8 years ago)
- Location:
- applications/editors/josm/plugins/imagery_offset_db/src/iodb
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery_offset_db/src/iodb/CalibrationLayer.java
r32528 r32910 185 185 * A simple icon with a colored rectangle. 186 186 */ 187 class SingleColorIcon implements Icon {187 static class SingleColorIcon implements Icon { 188 188 private Color color; 189 189 … … 213 213 * uses {@link #visitBoundingBox} to pan and zoom to the calibration geometry. 214 214 */ 215 class ZoomToLayerAction extends AbstractAction {215 static class ZoomToLayerAction extends AbstractAction { 216 216 ZoomToLayerAction() { 217 217 super(tr("Zoom to {0}", tr("layer"))); // to use translation from AutoScaleAction -
applications/editors/josm/plugins/imagery_offset_db/src/iodb/IODBReader.java
r32528 r32910 176 176 * and setters. 177 177 */ 178 private class IOFields {178 private static class IOFields { 179 179 public int id; 180 180 public LatLon position; -
applications/editors/josm/plugins/imagery_offset_db/src/iodb/OffsetDialog.java
r32528 r32910 322 322 * Opens a web browser with the wiki page in user's language. 323 323 */ 324 class HelpAction extends AbstractAction {324 static class HelpAction extends AbstractAction { 325 325 326 326 HelpAction() { -
applications/editors/josm/plugins/imagery_offset_db/src/iodb/OffsetDialogButton.java
r32528 r32910 239 239 } 240 240 241 private class DirectionIcon implements Icon {241 private static class DirectionIcon implements Icon { 242 242 private static final int SIZE = 10; 243 243
Note:
See TracChangeset
for help on using the changeset viewer.