Changeset 7592 in josm for trunk/src/org
- Timestamp:
- 2014-10-01T23:24:11+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java
r7247 r7592 1142 1142 * @param g2 the Graphics2D object used to draw on 1143 1143 * @param mv 1144 * @param p1en segment's first point 1145 * @param p2en segment's second point 1144 * @param seg the reference segment 1146 1145 */ 1147 1146 private void drawReferenceSegment(Graphics2D g2, MapView mv, ReferenceSegment seg) -
trunk/src/org/openstreetmap/josm/gui/io/DownloadPrimitivesWithReferrersTask.java
r7005 r7592 79 79 /** 80 80 * Cancel recursively the task. Do not call directly 81 * @see DownloadPrimitivesWithReferrersTask#operationCancel 81 * @see DownloadPrimitivesWithReferrersTask#operationCanceled() 82 82 */ 83 83 @Override -
trunk/src/org/openstreetmap/josm/gui/mappaint/StyleSource.java
r7563 r7592 70 70 * @param osm the primitive 71 71 * @param scale the map scale 72 * @param multipolyOuterWay support for a very old multipolygon tagging style73 * where you add the tags both to the outer and the inner way.74 * However, independent inner way style is also possible.75 72 * @param pretendWayIsClosed For styles that require the way to be closed, 76 73 * we pretend it is. This is useful for generating area styles from the (segmented) -
trunk/src/org/openstreetmap/josm/io/remotecontrol/DNSName.java
r7402 r7592 188 188 * <p> 189 189 * @param inputName to be checked for being constrained 190 * @return sconstraint type above190 * @return constraint type above 191 191 * @throws UnsupportedOperationException if name is not exact match, but narrowing and widening are 192 192 * not supported for this name type. … … 229 229 * path lengths in name subtrees. 230 230 * 231 * @return sdistance of name from root231 * @return distance of name from root 232 232 * @throws UnsupportedOperationException if not supported for this name type 233 233 */ -
trunk/src/org/openstreetmap/josm/tools/ExifReader.java
r7299 r7592 37 37 * @param filename The JPEG file to read 38 38 * @return The date/time read in the EXIF section, or {@code null} if not found 39 * @throws ParseException if {@link DateParser#parse} fails to parse date/time39 * @throws ParseException if {@link PrimaryDateParser#parse} fails to parse date/time 40 40 */ 41 41 public static Date readTime(File filename) throws ParseException { -
trunk/src/org/openstreetmap/josm/tools/GeoPropertyIndex.java
r7509 r7592 62 62 /** 63 63 * Look up the property for a certain point. 64 * This gives the same result as {@link #geoProp#get(LatLon)}, but64 * This gives the same result as {@link GeoProperty#get(LatLon)}, but 65 65 * should be faster. 66 66 * @param ll the point coordinates
Note:
See TracChangeset
for help on using the changeset viewer.