Changeset 18170 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2021-08-23T23:17:28+02:00 (3 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/coor/conversion/AbstractCoordinateFormat.java
r14203 r18170 38 38 * @param pattern decimal format pattern 39 39 * @return {@code DecimalFormat} using dot as decimal separator 40 * @see DecimalFormat#applyPattern 40 * @see DecimalFormat#applyPattern(String) 41 41 * @since 14203 42 42 */ -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/AbstractMapRenderer.java
r17896 r18170 91 91 * @param color The color of the node. 92 92 * @param size size in pixels 93 * @param fill determines if the square m must be filled93 * @param fill determines if the square must be filled 94 94 */ 95 95 public abstract void drawNode(INode n, Color color, int size, boolean fill); … … 196 196 197 197 /** 198 * Checks if a way seg emnt is large enough for additional information display.198 * Checks if a way segment is large enough for additional information display. 199 199 * 200 200 * @param p1 First point of the way segment. -
trunk/src/org/openstreetmap/josm/data/projection/proj/AlbersEqualArea.java
r13632 r18170 11 11 * Albers Equal Area Projection (EPSG code 9822). This is a conic projection with parallels being 12 12 * unequally spaced arcs of concentric circles, more closely spaced at north and south edges of the 13 * map. Merid eans are equally spaced radii of the same circles and intersect parallels at right13 * map. Meridians are equally spaced radii of the same circles and intersect parallels at right 14 14 * angles. As the name implies, this projection minimizes distortion in areas. 15 15 * <p> … … 28 28 * <ul> 29 29 * <li> Proj-4.4.7 available at <A HREF="http://www.remotesensing.org/proj">www.remotesensing.org/proj</A><br> 30 * Relev ent files are: PJ_aea.c, pj_fwd.c and pj_inv.c </li>30 * Relevant files are: PJ_aea.c, pj_fwd.c and pj_inv.c </li> 31 31 * <li> John P. Snyder (Map Projections - A Working Manual, 32 32 * U.S. Geological Survey Professional Paper 1395, 1987)</li> 33 33 * <li> "Coordinate Conversions and Transformations including Formulas", 34 * EPSG Guid ence Note Number 7, Version 19.</li>34 * EPSG Guidance Note Number 7, Version 19.</li> 35 35 * </ul> 36 36 * -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/AdjustTimezoneAndOffsetDialog.java
r18044 r18170 158 158 /** 159 159 * Sets the {@link AdjustListener}. 160 * @param listener adju ust listener. Can be null160 * @param listener adjust listener, can be null 161 161 * @return {@code this} 162 162 */ -
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletingTextField.java
r13173 r18170 47 47 public void insertString(int offs, String str, AttributeSet a) throws BadLocationException { 48 48 49 // If a maximum number of characters is specified, avoid to exceedit49 // If a maximum number of characters is specified, avoid exceeding it 50 50 if (maxChars != null && str != null && getLength() + str.length() > maxChars) { 51 51 int allowedLength = maxChars-getLength(); -
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java
r17585 r18170 457 457 @Override 458 458 public void relationMembersChanged(RelationMembersChangedEvent event) { 459 dirty = true; // TODO: not necessary to rebui d if a member is added459 dirty = true; // TODO: not necessary to rebuild if a member is added 460 460 } 461 461 -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/PresetLink.java
r17609 r18170 22 22 23 23 /** 24 * Adds a link to an 24 * Adds a link to another preset. 25 25 * @since 8863 26 26 */ -
trunk/src/org/openstreetmap/josm/gui/widgets/AbstractIdTextField.java
r16553 r18170 76 76 /** 77 77 * Tries to set text from given contents (no effect with invalid or empty contents) 78 * @param contents The text to interpret eas ID(s)78 * @param contents The text to interpret as ID(s) 79 79 * @return true if text has been pasted and valid ids have been read 80 80 */
Note:
See TracChangeset
for help on using the changeset viewer.