Changeset 9059 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-11-23T01:09:15+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/GeoPropertyIndex.java
r8510 r9059 32 32 */ 33 33 T get(LatLon ll); 34 34 35 /** 35 36 * Look up the property for a coordinate rectangle. -
trunk/src/org/openstreetmap/josm/tools/Geometry.java
r9038 r9059 43 43 } 44 44 45 public enum PolygonIntersection {FIRST_INSIDE_SECOND, SECOND_INSIDE_FIRST, OUTSIDE, CROSSING} 45 public enum PolygonIntersection { 46 FIRST_INSIDE_SECOND, 47 SECOND_INSIDE_FIRST, 48 OUTSIDE, 49 CROSSING 50 } 46 51 47 52 /** -
trunk/src/org/openstreetmap/josm/tools/Shortcut.java
r8952 r9059 208 208 } 209 209 } 210 210 211 /** 211 212 * use this to set a buttons's mnemonic … … 216 217 } 217 218 } 219 218 220 /** 219 221 * Sets the mnemonic key on a text component. … … 224 226 } 225 227 } 228 226 229 /** 227 230 * use this to set a actions's accelerator -
trunk/src/org/openstreetmap/josm/tools/date/DateUtils.java
r8582 r9059 252 252 } 253 253 } 254 254 255 /** 255 256 * Formats a time to be displayed to current user, based on user preferences.
Note:
See TracChangeset
for help on using the changeset viewer.