Changeset 17333 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-11-23T16:28:11+01:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 92 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AbstractPasteAction.java
r16553 r17333 73 73 MapView mapView = MainApplication.getMap().mapView; 74 74 EastNorth mPosition = mapView.getCenter(); 75 // We previously checked for modifier to know if the action has been trig erred via shortcut or via menu75 // We previously checked for modifier to know if the action has been triggered via shortcut or via menu 76 76 // But this does not work if the shortcut is changed to a single key (see #9055) 77 77 // Observed behaviour: getActionCommand() returns Action.NAME when triggered via menu, but shortcut text when triggered with it -
trunk/src/org/openstreetmap/josm/actions/ExpertToggleAction.java
r16509 r17333 53 53 54 54 /** 55 * Register a expert mode change listener, and option nally fires it.55 * Register a expert mode change listener, and optionally fires it. 56 56 * @param listener the listener. Ignored if null. 57 57 * @param fireWhenAdding if true, the listener will be fired immediately after added -
trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java
r17188 r17333 67 67 /** 68 68 * Gets the commands that will be required to do a full way reversal including changing the tags 69 * @return The com amnds69 * @return The commands 70 70 */ 71 71 public Collection<Command> getCommands() { -
trunk/src/org/openstreetmap/josm/actions/ToggleAction.java
r16824 r17333 18 18 19 19 /** 20 * Ab tract class for Toggle Actions.20 * Abstract class for Toggle Actions. 21 21 * @since 6220 22 22 */ … … 116 116 117 117 /** 118 * Toggles the selcted action state, if needed according to the ActionEvent that trigerred the action. 119 * This method will do nothing if the action event comes from a Swing component supporting the SELECTED_KEY property because 120 * the component already set the selected state. 121 * This method needs to be called especially if the action is associated with a keyboard shortcut to ensure correct selected state. 122 * @param e ActionEvent that trigerred the action 118 * Toggles the selected action state, if needed according to the ActionEvent that triggered the action. 119 * This method will do nothing if the action event comes from a Swing component 120 * supporting the SELECTED_KEY property because the component already set the selected state. 121 * This method needs to be called especially if the action is associated with a keyboard 122 * shortcut to ensure correct selected state. 123 * @param e ActionEvent that triggered the action 123 124 * @see <a href="https://docs.oracle.com/javase/8/docs/api/javax/swing/Action.html">Interface Action</a> 124 125 */ -
trunk/src/org/openstreetmap/josm/actions/downloadtasks/AbstractDownloadTask.java
r16553 r17333 119 119 * Determines if the given URL is accepted by {@link #getPatterns}. 120 120 * Can be overridden for more complex checking logic. 121 * @param url URL to do nwload121 * @param url URL to download 122 122 * @return {@code true} if this URL is accepted 123 123 */ -
trunk/src/org/openstreetmap/josm/actions/downloadtasks/ChangesetHeaderDownloadTask.java
r15152 r17333 21 21 22 22 /** 23 * This is an asynchronous task for downloading a collection of changes ts from the OSM server.23 * This is an asynchronous task for downloading a collection of changesets from the OSM server. 24 24 * 25 25 * The task only downloads the changeset properties without the changeset content. It -
trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java
r17188 r17333 124 124 private int initialMoveDelay = 200; 125 125 /** 126 * The minimal shift of mouse (in pixels) bef ire something counts as move126 * The minimal shift of mouse (in pixels) before something counts as move 127 127 */ 128 128 private int initialMoveThreshold = 1; -
trunk/src/org/openstreetmap/josm/command/Command.java
r17282 r17333 240 240 * Ensures that all primitives that are participating in this command belong to the affected data set. 241 241 * 242 * Commands may use this in their update methods to check the consi tency of the primitives they operate on.242 * Commands may use this in their update methods to check the consistency of the primitives they operate on. 243 243 * @throws AssertionError if no {@link DataSet} is set or if any primitive does not belong to that dataset. 244 244 */ -
trunk/src/org/openstreetmap/josm/command/RotateCommand.java
r14273 r17333 37 37 * Assign the initial object set, compute pivot point and initial rotation angle. 38 38 * @param objects objects to fetch nodes from 39 * @param currentEN cu urent eats/north39 * @param currentEN current east/north 40 40 */ 41 41 public RotateCommand(Collection<? extends OsmPrimitive> objects, EastNorth currentEN) { … … 51 51 /** 52 52 * Get angle between the horizontal axis and the line formed by the pivot and given point. 53 * @param currentEN cu urent eats/north53 * @param currentEN current east/north 54 54 * @return angle between the horizontal axis and the line formed by the pivot and given point 55 55 **/ -
trunk/src/org/openstreetmap/josm/command/ScaleCommand.java
r12581 r17333 37 37 * the "align nodes in circle" action. 38 38 * @param objects objects to fetch nodes from 39 * @param currentEN cu urent eats/north39 * @param currentEN current east/north 40 40 */ 41 41 public ScaleCommand(Collection<? extends OsmPrimitive> objects, EastNorth currentEN) { -
trunk/src/org/openstreetmap/josm/command/conflict/VersionConflictResolveCommand.java
r12726 r17333 60 60 (int) Math.max(myVersion, theirVersion) 61 61 ); 62 // update visib lity state62 // update visibility state 63 63 if (theirVersion >= myVersion) { 64 64 conflict.getMy().setVisible(conflict.getTheir().isVisible()); -
trunk/src/org/openstreetmap/josm/data/coor/LatLon.java
r16553 r17333 71 71 * The number format used for high precision coordinates 72 72 */ 73 public static final DecimalFormat cDdHighP ecisionFormatter;73 public static final DecimalFormat cDdHighPrecisionFormatter; 74 74 static { 75 75 // Don't use the localized decimal separator. This way we can present … … 77 77 cDdFormatter = (DecimalFormat) NumberFormat.getInstance(Locale.UK); 78 78 cDdFormatter.applyPattern("###0.0######"); 79 cDdHighP ecisionFormatter = (DecimalFormat) NumberFormat.getInstance(Locale.UK);80 cDdHighP ecisionFormatter.applyPattern("###0.0##########");79 cDdHighPrecisionFormatter = (DecimalFormat) NumberFormat.getInstance(Locale.UK); 80 cDdHighPrecisionFormatter.applyPattern("###0.0##########"); 81 81 } 82 82 -
trunk/src/org/openstreetmap/josm/data/gpx/GpxConstants.java
r15560 r17333 136 136 137 137 /** Creation/modification timestamp for the point. 138 * Date and time in are in Univeral CoordinatedTime (UTC), not local time!138 * Date and time in are in Coordinated Universal Time (UTC), not local time! 139 139 * Conforms to ISO 8601 specification for date/time representation. 140 140 * Fractional seconds are allowed for millisecond timing in tracklogs. */ -
trunk/src/org/openstreetmap/josm/data/osm/DataSet.java
r17332 r17333 887 887 * {@link DataSetListener#dataChanged(DataChangedEvent event)} event is triggered after end of changes 888 888 * <br> 889 * Typical use case should look like this:889 * Typical use case should look like this: 890 890 * <pre> 891 891 * ds.beginUpdate(); … … 906 906 * Must be called after a previous call to {@link #beginUpdate()} to fire change events. 907 907 * <br> 908 * Typical use case should look like this:908 * Typical use case should look like this: 909 909 * <pre> 910 910 * ds.beginUpdate(); … … 1149 1149 this, new LinkedHashSet<>(from.dataSources), from.dataSources.stream()); 1150 1150 if (from.dataSources.stream().filter(dataSource -> !dataSources.contains(dataSource)) 1151 . map(dataSources::add).filter(Boolean.TRUE::equals).count() > 0) {1151 .anyMatch(dataSources::add)) { 1152 1152 cachedDataSourceArea = null; 1153 1153 cachedDataSourceBounds = null; … … 1184 1184 1185 1185 /* --------------------------------------------------------------------------------- */ 1186 /* interface ProjectionChangeList ner*/1186 /* interface ProjectionChangeListener */ 1187 1187 /* --------------------------------------------------------------------------------- */ 1188 1188 @Override -
trunk/src/org/openstreetmap/josm/data/osm/DatasetConsistencyTest.java
r16119 r17333 69 69 70 70 /** 71 * Checks for womplete ways with incomplete nodes.71 * Checks for complete ways with incomplete nodes. 72 72 */ 73 73 public void checkCompleteWaysWithIncompleteNodes() { -
trunk/src/org/openstreetmap/josm/data/osm/IPrimitive.java
r15120 r17333 201 201 * Replies the OSM id of this primitive. 202 202 * By default, returns the same value as {@link #getId}. 203 * Can be over idden by primitive implementations handling an internal id different from the OSM one.203 * Can be overridden by primitive implementations handling an internal id different from the OSM one. 204 204 * 205 205 * @return the OSM id of this primitive. -
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r16992 r17333 38 38 * 39 39 * Although OsmPrimitive is designed as a base class, it is not to be meant to subclass 40 * it by any other than from the package {@link org.openstreetmap.josm.data.osm}. The available primitives are a fixed set that are given41 * by the server environment and not an extendible data stuff.40 * it by any other than from the package {@link org.openstreetmap.josm.data.osm}. The available primitives are a fixed 41 * set that are given by the server environment and not an extendable data stuff. 42 42 * 43 43 * @author imi -
trunk/src/org/openstreetmap/josm/data/osm/Stylable.java
r14302 r17333 25 25 * Clears the cached style. 26 26 * This should not be called from outside. Fixing the UI to add relevant 27 * get/set functions calling this implicit ely is preferred, so we can have27 * get/set functions calling this implicitly is preferred, so we can have 28 28 * transparent cache handling in the future. 29 29 */ -
trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
r16977 r17333 162 162 163 163 /** 164 * Creates a clone of the tag collection <code>other</code>. Creat s an empty164 * Creates a clone of the tag collection <code>other</code>. Creates an empty 165 165 * tag collection if <code>other</code> is null. 166 166 * … … 736 736 737 737 /** 738 * Get a str am for the given key.738 * Get a stream for the given key. 739 739 * @param key The key 740 740 * @return The stream. An empty stream if key is <code>null</code> -
trunk/src/org/openstreetmap/josm/data/osm/event/AbstractDatasetChangedEvent.java
r14206 r17333 38 38 RELATION_MEMBERS_CHANGED, 39 39 /** 40 * The tags of a primit ve have changed40 * The tags of a primitive have changed 41 41 */ 42 42 TAGS_CHANGED, -
trunk/src/org/openstreetmap/josm/data/osm/event/DatasetEventManager.java
r15378 r17333 22 22 * This class allows to add DatasetListener to currently active dataset. If active 23 23 * layer is changed, listeners are automatically registered at new active dataset 24 * (it's no longer necessary to register for layer events and re register every time24 * (it's no longer necessary to register for layer events and re-register every time 25 25 * new layer is selected) 26 26 * -
trunk/src/org/openstreetmap/josm/data/osm/history/History.java
r16445 r17333 128 128 129 129 /** 130 * Returns a new partial copy of this history, betw wen the given version numbers130 * Returns a new partial copy of this history, between the given version numbers 131 131 * @param fromVersion the starting version number 132 132 * @param untilVersion the ending version number -
trunk/src/org/openstreetmap/josm/data/osm/visitor/MergeSourceBuildingVisitor.java
r16445 r17333 60 60 61 61 /** 62 * Reme bers a node in the "hull"62 * Remembers a node in the "hull" 63 63 * 64 64 * @param n the node -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/AbstractMapRenderer.java
r17110 r17333 53 53 protected Color nodeColor; 54 54 55 /** Color Preference for high tlighted objects */55 /** Color Preference for highlighted objects */ 56 56 protected Color highlightColor; 57 /** Preference: size of virtual nodes (0 display es display) */57 /** Preference: size of virtual nodes (0 displays display) */ 58 58 protected int virtualNodeSize; 59 59 /** Preference: minimum space (displayed way length) to display virtual nodes */ -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/ComputeStyleListWorker.java
r13852 r17333 51 51 * Constructs a new {@code ComputeStyleListWorker}. 52 52 * @param circum distance on the map in meters that 100 screen pixels represent 53 * @param nc naviga table component53 * @param nc navigable component 54 54 * @param input the primitives to process 55 55 * @param output the list of styles to which styles will be added … … 65 65 * Constructs a new {@code ComputeStyleListWorker}. 66 66 * @param circum distance on the map in meters that 100 screen pixels represent 67 * @param nc naviga table component67 * @param nc navigable component 68 68 * @param input the primitives to process 69 69 * @param output the list of styles to which styles will be added -
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/MapRendererFactory.java
r16468 r17333 283 283 * <p>Creates an instance of the currently active renderer.</p> 284 284 * @param g Graphics 285 * @param viewport Naviga table component285 * @param viewport Navigable component 286 286 * @param isInactiveMode {@code true} if the paint visitor shall render OSM objects such that they look inactive 287 287 * @return an instance of the currently active renderer -
trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2GridShiftFile.java
r14273 r17333 48 48 * highest performance option, and is useful for large volume transformations. 49 49 * Non-file data sources (eg using an SQL Blob) are also supported through 50 * InputStream. The Rando nAccessFile option has a much smaller memory50 * InputStream. The RandomAccessFile option has a much smaller memory 51 51 * footprint as only the Sub Grid headers are stored in memory, but 52 52 * transformation is slower because the file must be read a number of -
trunk/src/org/openstreetmap/josm/data/projection/datum/package-info.java
r10747 r17333 2 2 3 3 /** 4 * Provides the classes for datum sused in map projections.4 * Provides the classes for datum used in map projections. 5 5 */ 6 6 package org.openstreetmap.josm.data.projection.datum; -
trunk/src/org/openstreetmap/josm/data/projection/proj/Mercator.java
r16630 r17333 17 17 * compass. 18 18 * <p> 19 * This implementation handles both the 1 and 2 sta rdard parallel cases.19 * This implementation handles both the 1 and 2 standard parallel cases. 20 20 * For 1 SP (EPSG code 9804), the line of contact is the equator. 21 21 * For 2 SP (EPSG code 9805) lines of contact are symmetrical -
trunk/src/org/openstreetmap/josm/data/projection/proj/ObliqueMercator.java
r14273 r17333 80 80 * 81 81 * <li>{@code Hotine_Oblique_Mercator} (EPSG code 9812)<br> 82 * grid coordinates begin at the intersec iton of the central line and aposphere equator,82 * grid coordinates begin at the intersection of the central line and aposphere equator, 83 83 * has {@code "rectified_grid_angle"} parameter.</li> 84 84 * <li>{@code Hotine_Oblique_Mercator_Azimuth_Natural_Origin} (ESRI)<br> -
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagCheckerAsserts.java
r16643 r17333 146 146 * Returns the set of tagchecks on which this check depends on. 147 147 * @param check the tagcheck 148 * @param schecks the collection of tagche ks to search in148 * @param schecks the collection of tagchecks to search in 149 149 * @return the set of tagchecks on which this check depends on 150 150 * @since 7881 -
trunk/src/org/openstreetmap/josm/gui/ExceptionDialogUtil.java
r16217 r17333 30 30 /** 31 31 * This utility class provides static methods which explain various exceptions to the user. 32 *33 32 */ 34 33 public final class ExceptionDialogUtil { … … 369 368 * @param e the exception 370 369 */ 371 public static void explainNestedUnk onwnHostException(OsmTransferException e) {370 public static void explainNestedUnknownHostException(OsmTransferException e) { 372 371 showErrorDialog( 373 372 ExceptionUtil.explainNestedUnknownHostException(e), … … 392 391 } 393 392 if (ExceptionUtil.getNestedException(e, UnknownHostException.class) != null) { 394 explainNestedUnk onwnHostException(e);393 explainNestedUnknownHostException(e); 395 394 return; 396 395 } … … 424 423 if (e instanceof OsmApiException) { 425 424 OsmApiException oae = (OsmApiException) e; 426 switch(oae.getResponseCode()) { 427 case HttpURLConnection.HTTP_PRECON_FAILED: 428 explainPreconditionFailed(oae); 429 return; 430 case HttpURLConnection.HTTP_GONE: 431 explainGoneForUnknownPrimitive(oae); 432 return; 433 case HttpURLConnection.HTTP_INTERNAL_ERROR: 434 explainInternalServerError(oae); 435 return; 436 case HttpURLConnection.HTTP_BAD_REQUEST: 437 explainBadRequest(oae); 438 return; 439 case HttpURLConnection.HTTP_NOT_FOUND: 440 explainNotFound(oae); 441 return; 442 case HttpURLConnection.HTTP_CONFLICT: 443 explainConflict(oae); 444 return; 445 case HttpURLConnection.HTTP_UNAUTHORIZED: 446 explainAuthenticationFailed(oae); 447 return; 448 case HttpURLConnection.HTTP_FORBIDDEN: 449 explainAuthorizationFailed(oae); 450 return; 451 case HttpURLConnection.HTTP_CLIENT_TIMEOUT: 452 explainClientTimeout(oae); 453 return; 454 case 509: case 429: 455 explainBandwidthLimitExceeded(oae); 456 return; 457 default: 458 explainGenericHttpException(oae); 459 return; 425 switch (oae.getResponseCode()) { 426 case HttpURLConnection.HTTP_PRECON_FAILED: 427 explainPreconditionFailed(oae); 428 return; 429 case HttpURLConnection.HTTP_GONE: 430 explainGoneForUnknownPrimitive(oae); 431 return; 432 case HttpURLConnection.HTTP_INTERNAL_ERROR: 433 explainInternalServerError(oae); 434 return; 435 case HttpURLConnection.HTTP_BAD_REQUEST: 436 explainBadRequest(oae); 437 return; 438 case HttpURLConnection.HTTP_NOT_FOUND: 439 explainNotFound(oae); 440 return; 441 case HttpURLConnection.HTTP_CONFLICT: 442 explainConflict(oae); 443 return; 444 case HttpURLConnection.HTTP_UNAUTHORIZED: 445 explainAuthenticationFailed(oae); 446 return; 447 case HttpURLConnection.HTTP_FORBIDDEN: 448 explainAuthorizationFailed(oae); 449 return; 450 case HttpURLConnection.HTTP_CLIENT_TIMEOUT: 451 explainClientTimeout(oae); 452 return; 453 case 509: 454 case 429: 455 explainBandwidthLimitExceeded(oae); 456 return; 457 default: 458 explainGenericHttpException(oae); 459 return; 460 460 } 461 461 } -
trunk/src/org/openstreetmap/josm/gui/MapFrameListener.java
r10600 r17333 11 11 12 12 /** 13 * Called after Main.mapFrame is init alized. (After the first data is loaded).13 * Called after Main.mapFrame is initialized. (After the first data is loaded). 14 14 * You can use this callback to tweak the newFrame to your needs, as example install 15 15 * an alternative Painter. -
trunk/src/org/openstreetmap/josm/gui/MapMover.java
r14214 r17333 124 124 /** 125 125 * Constructs a new {@code MapMover}. 126 * @param navComp the naviga table component126 * @param navComp the navigable component 127 127 * @since 11713 128 128 */ -
trunk/src/org/openstreetmap/josm/gui/MapViewState.java
r17090 r17333 714 714 /** 715 715 * Gets the real bounds that enclose this rectangle. 716 * This is computed respecting that the borders of this rectangle may not be a straig nt line in latlon coordinates.716 * This is computed respecting that the borders of this rectangle may not be a straight line in latlon coordinates. 717 717 * @return The bounds. 718 718 * @since 10458 -
trunk/src/org/openstreetmap/josm/gui/bbox/SlippyMapBBoxChooser.java
r16927 r17333 143 143 MainApplication.getLayerManager().addActiveLayerChangeListener(this); 144 144 145 new SlippyMapControl er(this, this);145 new SlippyMapController(this, this); 146 146 } 147 147 … … 247 247 248 248 /** 249 * Handles a {@link SlippyMapControl er#mouseMoved} event249 * Handles a {@link SlippyMapController#mouseMoved} event 250 250 * @param point The point in the view 251 251 */ -
trunk/src/org/openstreetmap/josm/gui/bbox/SlippyMapControler.java
r16920 r17333 28 28 * @author Tim Haussmann 29 29 */ 30 public class SlippyMapControl er extends MouseAdapter {30 public class SlippyMapController extends MouseAdapter { 31 31 32 32 /** A Timer for smoothly moving the map area */ … … 61 61 62 62 /** 63 * Constructs a new {@code SlippyMapControl er}.64 * @param navComp naviga table component63 * Constructs a new {@code SlippyMapController}. 64 * @param navComp navigable component 65 65 * @param contentPane content pane 66 66 */ 67 public SlippyMapControl er(SlippyMapBBoxChooser navComp, JPanel contentPane) {67 public SlippyMapController(SlippyMapBBoxChooser navComp, JPanel contentPane) { 68 68 iSlippyMapChooser = navComp; 69 69 iSlippyMapChooser.addMouseListener(this); -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/AbstractListMerger.java
r16553 r17333 89 89 protected abstract JScrollPane buildTheirElementsTable(); 90 90 91 protected JScrollPane embed dInScrollPane(JTable table) {91 protected JScrollPane embedInScrollPane(JTable table) { 92 92 JScrollPane pane = new JScrollPane(table); 93 93 if (adjustmentSynchronizer == null) { -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/IConflictResolver.java
r12661 r17333 7 7 8 8 /** 9 * The conflict resolver receives the result of a {@link ConflictDialog}. It should then apply the resulution the user selected. 9 * The conflict resolver receives the result of a {@link ConflictDialog}. 10 * It should then apply the resolution the user selected. 10 11 */ 11 12 public interface IConflictResolver { -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMergeModel.java
r11330 r17333 19 19 20 20 /** 21 * The model for merging two lists of way nodes s21 * The model for merging two lists of way nodes 22 22 * @since 1622 23 23 */ -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/nodes/NodeListMerger.java
r11330 r17333 32 32 model.getMySelectionModel() 33 33 ); 34 return embed dInScrollPane(myEntriesTable);34 return embedInScrollPane(myEntriesTable); 35 35 } 36 36 … … 43 43 model.getMergedSelectionModel() 44 44 ); 45 return embed dInScrollPane(mergedEntriesTable);45 return embedInScrollPane(mergedEntriesTable); 46 46 } 47 47 … … 54 54 model.getTheirSelectionModel() 55 55 ); 56 return embed dInScrollPane(theirEntriesTable);56 return embedInScrollPane(theirEntriesTable); 57 57 } 58 58 -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberMerger.java
r11330 r17333 32 32 model.getMySelectionModel() 33 33 ); 34 return embed dInScrollPane(myEntriesTable);34 return embedInScrollPane(myEntriesTable); 35 35 } 36 36 … … 44 44 ); 45 45 mergedEntriesTable.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE); 46 return embed dInScrollPane(mergedEntriesTable);46 return embedInScrollPane(mergedEntriesTable); 47 47 } 48 48 … … 55 55 model.getTheirSelectionModel() 56 56 ); 57 return embed dInScrollPane(theirEntriesTable);57 return embedInScrollPane(theirEntriesTable); 58 58 } 59 59 -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellEditor.java
r12620 r17333 30 30 * 31 31 * The editor responds intercepts some keys and interprets them as navigation keys. It 32 * forwards navigation events to {@link NavigationListener}s regist red with this editor.32 * forwards navigation events to {@link NavigationListener}s registered with this editor. 33 33 * You should register the parent table using this editor as {@link NavigationListener}. 34 34 * -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueResolutionDecision.java
r16438 r17333 121 121 * sets a new value for this 122 122 * 123 * @param value the new v laue123 * @param value the new value 124 124 */ 125 125 public void setNew(String value) { -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/TagConflictResolverModel.java
r16438 r17333 202 202 203 203 /** 204 * Gets the number of re amining conflicts.204 * Gets the number of remaining conflicts. 205 205 * @return The number 206 206 */ -
trunk/src/org/openstreetmap/josm/gui/datatransfer/data/PrimitiveTransferData.java
r16494 r17333 145 145 146 146 /** 147 * Tests whet er this set contains any primitives that have invalid data.147 * Tests whether this set contains any primitives that have invalid data. 148 148 * @return <code>true</code> if invalid data is contained in this set. 149 149 */ -
trunk/src/org/openstreetmap/josm/gui/dialogs/ChangesetDialog.java
r17188 r17333 71 71 * <ul> 72 72 * <li>the list of changesets the currently selected objects are assigned to</li> 73 * <li>the list of changesets objects in the current data layer are assig end to</li>73 * <li>the list of changesets objects in the current data layer are assigned to</li> 74 74 * </ul> 75 75 * -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManager.java
r17255 r17333 228 228 * in the changeset table. 229 229 * 230 * @return chang set actions panel230 * @return changeset actions panel 231 231 */ 232 232 protected JPanel buildChangesetTableActionPanel() { … … 717 717 718 718 /** 719 * Selects the changesets in <code>changes ts</code>, provided the719 * Selects the changesets in <code>changesets</code>, provided the 720 720 * respective changesets are already present in the local changeset cache. 721 721 * -
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDiscussionTableCellRenderer.java
r10217 r17333 12 12 13 13 /** 14 * The cell renderer for the changeset di cussion table14 * The cell renderer for the changeset discussion table 15 15 * @since 7715 16 16 */ -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationEditorHooks.java
r14030 r17333 35 35 * @param group The group to add 36 36 */ 37 public static void addActionsToSelectio (IRelationEditorActionGroup group) {37 public static void addActionsToSelection(IRelationEditorActionGroup group) { 38 38 selectionActions.add(group); 39 39 } -
trunk/src/org/openstreetmap/josm/gui/download/BookmarkList.java
r13843 r17333 88 88 89 89 /** 90 * Constructs a new un amed {@code Bookmark} for the given area.90 * Constructs a new unnamed {@code Bookmark} for the given area. 91 91 * @param area The bookmark area 92 92 */ -
trunk/src/org/openstreetmap/josm/gui/download/DownloadSourceSizingPolicy.java
r16913 r17333 63 63 * The height of this component is given by a preference entry. 64 64 * <p> 65 * Mind that using a preferred component size is not possible in this case, since the preference entry needs to have a onstant default value. 65 * Mind that using a preferred component size is not possible in this case, 66 * since the preference entry needs to have a constant default value. 66 67 */ 67 68 class AdjustableDownloadSizePolicy implements DownloadSourceSizingPolicy { -
trunk/src/org/openstreetmap/josm/gui/draw/SymbolShape.java
r14342 r17333 25 25 CIRCLE("circle", 1, 0), 26 26 /** 27 * A triangle with sides of equal leng h27 * A triangle with sides of equal length 28 28 */ 29 29 TRIANGLE("triangle", 3, Math.PI / 2), -
trunk/src/org/openstreetmap/josm/gui/help/HyperlinkHandler.java
r14807 r17333 26 26 27 27 /** 28 * Handles cli ks on hyperlinks inside {@link HelpBrowser}.28 * Handles clicks on hyperlinks inside {@link HelpBrowser}. 29 29 * @since 14807 30 30 */ -
trunk/src/org/openstreetmap/josm/gui/history/VersionTable.java
r17029 r17333 331 331 /** 332 332 * Constructs a new {@code AlignedRenderer}. 333 * @param hAlignment Horizontal align ement. One of the following constants defined in SwingConstants:333 * @param hAlignment Horizontal alignment. One of the following constants defined in SwingConstants: 334 334 * LEFT, CENTER (the default for image-only labels), RIGHT, LEADING (the default for text-only labels) or TRAILING 335 335 */ -
trunk/src/org/openstreetmap/josm/gui/io/CustomConfigurator.java
r16913 r17333 186 186 * Default values are not saved. 187 187 * @param filename - where to export 188 * @param append - if true, resulting file cause appending to ex uisting preferences188 * @param append - if true, resulting file cause appending to existing preferences 189 189 * @param keys - which preferences keys you need to export ("imagery.entries", for example) 190 190 */ … … 200 200 * Preference keys matching specified pattern are saved 201 201 * @param fileName - where to export 202 * @param append - if true, resulting file cause appending to ex uisting preferences203 * @param pattern - Regexp pattern for hpreferences keys you need to export (".*imagery.*", for example)202 * @param append - if true, resulting file cause appending to existing preferences 203 * @param pattern - Regexp pattern for preferences keys you need to export (".*imagery.*", for example) 204 204 */ 205 205 public static void exportPreferencesKeysByPatternToFile(String fileName, boolean append, String pattern) { -
trunk/src/org/openstreetmap/josm/gui/layer/LayerManager.java
r16977 r17333 190 190 191 191 /** 192 * This is the list of layers we manage. The list is unmodifyable. That way, read access does not need to be synchronized. 192 * This is the list of layers we manage. The list is unmodifiable. That way, read access does 193 * not need to be synchronized. 193 194 * 194 195 * It is only changed in the EDT. -
trunk/src/org/openstreetmap/josm/gui/layer/NativeScaleLayer.java
r16438 r17333 192 192 * Get new scale for zoom in/out with a ratio at a number of times. 193 193 * Used by mousewheel zoom where wheel can step more than one between events. 194 * @param scale previo is scale194 * @param scale previous scale 195 195 * @param ratio user defined zoom ratio 196 196 * @param times number of times to zoom -
trunk/src/org/openstreetmap/josm/gui/layer/gpx/ImportImagesAction.java
r14153 r17333 26 26 27 27 /** 28 * An ac iton that imports images along a GPX path28 * An action that imports images along a GPX path 29 29 */ 30 30 public class ImportImagesAction extends AbstractAction { -
trunk/src/org/openstreetmap/josm/gui/layer/imagery/FlushTileCacheAction.java
r11956 r17333 39 39 @Override 40 40 protected void finish() { 41 // empty - flush is instan eus41 // empty - flush is instantaneous 42 42 } 43 43 44 44 @Override 45 45 protected void cancel() { 46 // empty - flush is instan eus46 // empty - flush is instantaneous 47 47 } 48 48 }.run(); -
trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyles.java
r16590 r17333 147 147 * @param osm OSM primitive 148 148 * @param scale scale 149 * @param nc naviga table component149 * @param nc navigable component 150 150 * @return pair containing style list and range 151 151 * @since 13810 (signature) … … 239 239 * @param osm OSM primitive 240 240 * @param scale scale 241 * @param nc naviga table component241 * @param nc navigable component 242 242 * @return pair containing style list and range 243 243 */ -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSException.java
r16906 r17333 14 14 /** 15 15 * Constructs a new {@code MapCSSException} with an explicit error message. 16 * @param special message error message16 * @param specialMessage error message 17 17 */ 18 public MapCSSException(String special message) {19 super(special message);18 public MapCSSException(String specialMessage) { 19 super(specialMessage); 20 20 } 21 21 -
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/LineElement.java
r16252 r17333 58 58 public float realWidth; 59 59 /** 60 * A flag indicating if the direction arr wos should be painted. Should not be accessed directly60 * A flag indicating if the direction arrows should be painted. Should not be accessed directly 61 61 */ 62 62 public boolean wayDirectionArrows; -
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/Symbol.java
r10875 r17333 28 28 public final Color strokeColor; 29 29 /** 30 * The color to fill the interio ur of the shape.30 * The color to fill the interior of the shape. 31 31 */ 32 32 public final Color fillColor; … … 38 38 * @param stroke The stroke to use for the outline 39 39 * @param strokeColor The color to draw the stroke with 40 * @param fillColor The color to fill the interio ur of the shape.40 * @param fillColor The color to fill the interior of the shape. 41 41 */ 42 42 public Symbol(SymbolShape symbol, int size, Stroke stroke, Color strokeColor, Color fillColor) { -
trunk/src/org/openstreetmap/josm/gui/oauth/FullyAutomaticAuthorizationUI.java
r13892 r17333 84 84 * Builds the panel for entering the username and password 85 85 * 86 * @return constructed panel for the cred itentials86 * @return constructed panel for the credentials 87 87 */ 88 88 protected VerticallyScrollablePanel buildUserNamePasswordPanel() { -
trunk/src/org/openstreetmap/josm/gui/oauth/SemiAutomaticAuthorizationUI.java
r14977 r17333 32 32 33 33 /** 34 * This is the UI for running a semi c-automic authorisation procedure.34 * This is the UI for running a semi-automatic authorisation procedure. 35 35 * 36 36 * In contrast to the fully-automatic procedure the user is dispatched to an -
trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreferencesModel.java
r16438 r17333 163 163 164 164 /** 165 * Replies the list of plugin information sto display.166 * 167 * @return the list of plugin information sto display165 * Replies the list of plugin information to display. 166 * 167 * @return the list of plugin information to display 168 168 */ 169 169 public List<PluginInformation> getDisplayedPlugins() { -
trunk/src/org/openstreetmap/josm/gui/preferences/server/AuthenticationPreferencesPanel.java
r17160 r17333 36 36 private final JRadioButton rbOAuth = new JRadioButton(); 37 37 /** the panel which contains the authentication parameters for the respective authentication scheme */ 38 private final JPanel pnlAuthenticationParamete ters = new JPanel(new BorderLayout());38 private final JPanel pnlAuthenticationParameters = new JPanel(new BorderLayout()); 39 39 /** the panel for the basic authentication parameters */ 40 40 private BasicAuthenticationPreferencesPanel pnlBasicAuthPreferences; … … 91 91 gc.weightx = 1.0; 92 92 gc.weighty = 1.0; 93 add(pnlAuthenticationParamete ters, gc);93 add(pnlAuthenticationParameters, gc); 94 94 95 95 //-- the two panels for authentication parameters … … 98 98 99 99 rbBasicAuthentication.setSelected(true); 100 pnlAuthenticationParamete ters.add(pnlBasicAuthPreferences, BorderLayout.CENTER);100 pnlAuthenticationParameters.add(pnlBasicAuthPreferences, BorderLayout.CENTER); 101 101 } 102 102 … … 151 151 public void itemStateChanged(ItemEvent e) { 152 152 if (rbBasicAuthentication.isSelected()) { 153 pnlAuthenticationParamete ters.removeAll();154 pnlAuthenticationParamete ters.add(pnlBasicAuthPreferences, BorderLayout.CENTER);153 pnlAuthenticationParameters.removeAll(); 154 pnlAuthenticationParameters.add(pnlBasicAuthPreferences, BorderLayout.CENTER); 155 155 pnlBasicAuthPreferences.revalidate(); 156 156 } else { 157 pnlAuthenticationParamete ters.removeAll();158 pnlAuthenticationParamete ters.add(pnlOAuthPreferences, BorderLayout.CENTER);157 pnlAuthenticationParameters.removeAll(); 158 pnlAuthenticationParameters.add(pnlOAuthPreferences, BorderLayout.CENTER); 159 159 pnlOAuthPreferences.revalidate(); 160 160 } -
trunk/src/org/openstreetmap/josm/gui/preferences/server/OAuthAuthenticationPreferencesPanel.java
r16422 r17333 74 74 75 75 cbUseForAllRequests.setText(tr("Use OAuth for all requests to {0}", OsmApi.getOsmApi().getServerUrl())); 76 cbUseForAllRequests.setToolTipText(tr("For user-based bandwi th limit instead of IP-based one"));76 cbUseForAllRequests.setToolTipText(tr("For user-based bandwidth limit instead of IP-based one")); 77 77 pnl.add(cbUseForAllRequests, GBC.eol().fill(GBC.HORIZONTAL)); 78 78 -
trunk/src/org/openstreetmap/josm/gui/progress/swing/PleaseWaitProgressMonitor.java
r14302 r17333 216 216 217 217 /** 218 * See if this task is cancel eable218 * See if this task is cancelable 219 219 * @return <code>true</code> if it can be canceled 220 220 */ -
trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionList.java
r16553 r17333 105 105 106 106 /** 107 * adds a collec iton of {@link AutoCompletionItem} to this list. An item is only107 * adds a collection of {@link AutoCompletionItem} to this list. An item is only 108 108 * added it is not null and if it does not exist in the list yet. 109 109 * -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/Roles.java
r16179 r17333 69 69 70 70 /** 71 * Sets w ether this role is required at least once in the relation.71 * Sets whether this role is required at least once in the relation. 72 72 * @param str "required" or "optional" 73 73 * @throws SAXException if str is neither "required" or "optional" … … 81 81 82 82 /** 83 * Sets w ether the role name is a regular expression.83 * Sets whether the role name is a regular expression. 84 84 * @param str "true" or "false" 85 85 * @throws SAXException if str is neither "true" or "false" -
trunk/src/org/openstreetmap/josm/gui/util/MultikeyShortcutAction.java
r12807 r17333 9 9 10 10 /** 11 * Action implementing a multikey shortcut - shor cuts like Ctrl+Alt+S,n will toggle n-th layer visibility.11 * Action implementing a multikey shortcut - shortcuts like Ctrl+Alt+S,n will toggle n-th layer visibility. 12 12 * @since 4595 13 13 */ -
trunk/src/org/openstreetmap/josm/gui/widgets/FileChooserManager.java
r14668 r17333 331 331 /** 332 332 * Opens the {@code AbstractFileChooser} that has been created. 333 * @return the {@code AbstractFileChooser} if the user effectively choses a file or directory. {@code null} if the user cancelled the dialog. 333 * @return the {@code AbstractFileChooser} if the user effectively chooses a file or directory. 334 * {@code null} if the user cancelled the dialog. 334 335 */ 335 336 public final AbstractFileChooser openFileChooser() { … … 338 339 339 340 /** 340 * Opens the {@code AbstractFileChooser} that has been created and waits for the user to choose a file/directory, or cancel the dialog.<br> 341 * When the user choses a file or directory, the {@code lastDirProperty} is updated to the chosen directory path. 342 * 343 * @param parent The Component used as the parent of the AbstractFileChooser. If null, uses {@code MainApplication.getMainFrame()}. 344 * @return the {@code AbstractFileChooser} if the user effectively choses a file or directory. {@code null} if the user cancelled the dialog. 341 * Opens the {@code AbstractFileChooser} that has been created and waits for the user to choose a file/directory, 342 * or cancel the dialog.<br> 343 * When the user chooses a file or directory, the {@code lastDirProperty} is updated to the chosen directory path. 344 * 345 * @param parent The Component used as the parent of the AbstractFileChooser. If null, 346 * uses {@code MainApplication.getMainFrame()}. 347 * @return the {@code AbstractFileChooser} if the user effectively chooses 348 * a file or directory.{@code null} if the user cancelled the dialog. 345 349 */ 346 350 public AbstractFileChooser openFileChooser(Component parent) { -
trunk/src/org/openstreetmap/josm/gui/widgets/SearchTextResultListPanel.java
r16553 r17333 182 182 183 183 /** 184 * Sets a listener to be invoked on s single click184 * Sets a listener to be invoked on single click 185 185 * @param clickListener The click listener 186 186 */ -
trunk/src/org/openstreetmap/josm/io/ChangesetQuery.java
r16643 r17333 236 236 * 237 237 * @param min the min lat/lon coordinates of the bounding box. Must not be null. 238 * @param max the max lat/lon coordi antes of the bounding box. Must not be null.238 * @param max the max lat/lon coordinates of the bounding box. Must not be null. 239 239 * 240 240 * @return the restricted changeset query … … 278 278 /** 279 279 * Restricts the result to changesets which have been closed after <code>closedAfter</code> and which 280 * ha be been created before <code>createdBefore</code>. Both dates are expressed relative to the current280 * have been created before <code>createdBefore</code>. Both dates are expressed relative to the current 281 281 * time zone. 282 282 * -
trunk/src/org/openstreetmap/josm/io/ImportCancelException.java
r7937 r17333 3 3 4 4 /** 5 * All exceptions resulting from a user cancel ation during any import should implement this interface.5 * All exceptions resulting from a user cancellation during any import should implement this interface. 6 6 * @since 6621 7 7 */ -
trunk/src/org/openstreetmap/josm/io/MessageNotifier.java
r16427 r17333 90 90 } 91 91 } catch (OsmApiException e) { 92 // We want to explicit ely display message to user in some cases like when he has been blocked (#17722)92 // We want to explicitly display message to user in some cases like when he has been blocked (#17722) 93 93 ExceptionDialogUtil.explainOsmTransferException(e); 94 94 } catch (OsmTransferException e) { -
trunk/src/org/openstreetmap/josm/io/MultiFetchServerObjectReader.java
r17290 r17333 409 409 410 410 /** 411 * Workaround for difference in O erpass API.411 * Workaround for difference in Overpass API. 412 412 * As of now (version 7.55) Overpass api doesn't return invisible objects. 413 413 * Check if we have objects which do not appear in the dataset and fetch them from OSM instead. -
trunk/src/org/openstreetmap/josm/io/NoteWriter.java
r13903 r17333 51 51 out.print(" <note "); 52 52 out.print("id=\"" + note.getId() + "\" "); 53 out.print("lat=\"" + LatLon.cDdHighP ecisionFormatter.format(ll.lat()) + "\" ");54 out.print("lon=\"" + LatLon.cDdHighP ecisionFormatter.format(ll.lon()) + "\" ");53 out.print("lat=\"" + LatLon.cDdHighPrecisionFormatter.format(ll.lat()) + "\" "); 54 out.print("lon=\"" + LatLon.cDdHighPrecisionFormatter.format(ll.lon()) + "\" "); 55 55 out.print("created_at=\"" + DateUtils.fromDate(note.getCreatedAt()) + "\" "); 56 56 if (note.getClosedAt() != null) { -
trunk/src/org/openstreetmap/josm/io/OsmApi.java
r16630 r17333 72 72 73 73 /** 74 * Defines whether all OSM API requests should be signed with an OAuth token (user-based bandwi th limit instead of IP-based one)74 * Defines whether all OSM API requests should be signed with an OAuth token (user-based bandwidth limit instead of IP-based one) 75 75 */ 76 76 public static final BooleanProperty USE_OAUTH_FOR_ALL_REQUESTS = new BooleanProperty("oauth.use-for-all-requests", true); -
trunk/src/org/openstreetmap/josm/io/OsmWriter.java
r16953 r17333 239 239 void writeLatLon(LatLon ll) { 240 240 if (ll != null) { 241 out.print(" lat='"+LatLon.cDdHighP ecisionFormatter.format(ll.lat())+242 "' lon='"+LatLon.cDdHighP ecisionFormatter.format(ll.lon())+'\'');241 out.print(" lat='"+LatLon.cDdHighPrecisionFormatter.format(ll.lat())+ 242 "' lon='"+LatLon.cDdHighPrecisionFormatter.format(ll.lon())+'\''); 243 243 } 244 244 } -
trunk/src/org/openstreetmap/josm/io/OverpassDownloadReader.java
r16643 r17333 94 94 * @since 11916 95 95 */ 96 public enum OverpassOutp outFormat {96 public enum OverpassOutputFormat { 97 97 /** Default output format: plain OSM XML */ 98 98 OSM_XML("xml"), … … 110 110 private final String directive; 111 111 112 OverpassOutp outFormat(String directive) {112 OverpassOutputFormat(String directive) { 113 113 this.directive = directive; 114 114 } … … 123 123 124 124 /** 125 * Returns the {@code OverpassOutp outFormat} matching the given directive.125 * Returns the {@code OverpassOutputFormat} matching the given directive. 126 126 * @param directive directive used in {@code [out:<directive>]} statement 127 * @return {@code OverpassOutp outFormat} matching the given directive127 * @return {@code OverpassOutputFormat} matching the given directive 128 128 * @throws IllegalArgumentException in case of invalid directive 129 129 */ 130 static OverpassOutp outFormat from(String directive) {131 for (OverpassOutp outFormat oof : values()) {130 static OverpassOutputFormat from(String directive) { 131 for (OverpassOutputFormat oof : values()) { 132 132 if (oof.directive.equals(directive)) { 133 133 return oof; … … 140 140 static final Pattern OUTPUT_FORMAT_STATEMENT = Pattern.compile(".*\\[out:([a-z]{3,})\\].*", Pattern.DOTALL); 141 141 142 static final Map<OverpassOutp outFormat, Class<? extends AbstractReader>> outputFormatReaders = new ConcurrentHashMap<>();142 static final Map<OverpassOutputFormat, Class<? extends AbstractReader>> outputFormatReaders = new ConcurrentHashMap<>(); 143 143 144 144 final String overpassServer; … … 165 165 * @return the previous value associated with {@code format}, or {@code null} if there was no mapping 166 166 */ 167 public static final Class<? extends AbstractReader> registerOverpassOutp outFormatReader(168 OverpassOutp outFormat format, Class<? extends AbstractReader> readerClass) {167 public static final Class<? extends AbstractReader> registerOverpassOutputFormatReader( 168 OverpassOutputFormat format, Class<? extends AbstractReader> readerClass) { 169 169 return outputFormatReaders.put(Objects.requireNonNull(format), Objects.requireNonNull(readerClass)); 170 170 } 171 171 172 172 static { 173 registerOverpassOutp outFormatReader(OverpassOutpoutFormat.OSM_XML, OverpassOsmReader.class);174 registerOverpassOutp outFormatReader(OverpassOutpoutFormat.OSM_JSON, OverpassOsmJsonReader.class);173 registerOverpassOutputFormatReader(OverpassOutputFormat.OSM_XML, OverpassOsmReader.class); 174 registerOverpassOutputFormatReader(OverpassOutputFormat.OSM_JSON, OverpassOsmJsonReader.class); 175 175 } 176 176 … … 369 369 Matcher m = OUTPUT_FORMAT_STATEMENT.matcher(overpassQuery); 370 370 if (m.matches()) { 371 Class<? extends AbstractReader> readerClass = outputFormatReaders.get(OverpassOutp outFormat.from(m.group(1)));371 Class<? extends AbstractReader> readerClass = outputFormatReaders.get(OverpassOutputFormat.from(m.group(1))); 372 372 if (readerClass != null) { 373 373 try { -
trunk/src/org/openstreetmap/josm/io/audio/AudioPlayer.java
r16624 r17333 171 171 * @param url The resource to play, which must be a WAV file or stream 172 172 * @param seconds The number of seconds into the audio to start playing 173 * @param speed Rate at which audio play es (1.0 = real time, > 1 is faster)173 * @param speed Rate at which audio plays (1.0 = real time, > 1 is faster) 174 174 * @throws InterruptedException thread interrupted 175 175 * @throws IOException audio fault exception, e.g. can't open stream, unhandleable audio format … … 184 184 * Pauses the currently playing audio stream. Does nothing if nothing playing. 185 185 * @throws InterruptedException thread interrupted 186 * @throws IOException audio fault exception, e.g. can't open stream, 186 * @throws IOException audio fault exception, e.g. can't open stream, unhandleable audio format 187 187 */ 188 188 public static void pause() throws InterruptedException, IOException { -
trunk/src/org/openstreetmap/josm/io/audio/JavaSoundPlayer.java
r16913 r17333 89 89 bytesToSkip -= skippedBytes; 90 90 if (skippedBytes == 0) { 91 // Avoid in ifinite loop91 // Avoid infinite loop 92 92 Logging.warn("Unable to skip bytes from audio input stream"); 93 93 bytesToSkip = 0; -
trunk/src/org/openstreetmap/josm/io/auth/CredentialsAgentResponse.java
r11879 r17333 60 60 61 61 /** 62 * Sets the cancel ation status (authentication request canceled by user)63 * @param canceled the cancel ation status (authentication request canceled by user)62 * Sets the cancellation status (authentication request canceled by user) 63 * @param canceled the cancellation status (authentication request canceled by user) 64 64 */ 65 65 public void setCanceled(boolean canceled) { -
trunk/src/org/openstreetmap/josm/tools/KeyboardUtils.java
r14282 r17333 214 214 break; 215 215 case "hu": 216 // Hungar y, https://en.wikipedia.org/wiki/QWERTZ#Hungary216 // Hungarian, https://en.wikipedia.org/wiki/QWERTZ#Hungary 217 217 result.add('0'); 218 218 break; -
trunk/src/org/openstreetmap/josm/tools/Platform.java
r13647 r17333 11 11 12 12 /** 13 * Uni k-like platform. This is the default when the platform cannot be identified.13 * Unix-like platform. This is the default when the platform cannot be identified. 14 14 */ 15 15 UNIXOID { -
trunk/src/org/openstreetmap/josm/tools/RotationAngle.java
r16488 r17333 135 135 136 136 /** 137 * Converts an angle diven in cardinal directions to radians.137 * Converts an angle given in cardinal directions to radians. 138 138 * The following values are supported: {@code n}, {@code north}, {@code ne}, {@code northeast}, 139 139 * {@code e}, {@code east}, {@code se}, {@code southeast}, {@code s}, {@code south}, -
trunk/src/org/openstreetmap/josm/tools/StreamUtils.java
r16517 r17333 36 36 37 37 /** 38 * Cre qates a stream iterating the list in reversed order38 * Creates a stream iterating the list in reversed order 39 39 * @param list the list to iterate over 40 40 * @param <T> the type of elements in the list -
trunk/src/org/openstreetmap/josm/tools/bugreport/ReportedException.java
r16621 r17333 42 42 43 43 /** 44 * We capture all stack traces on exception creation. This allows us to trace synch onization problems better.44 * We capture all stack traces on exception creation. This allows us to trace synchronization problems better. 45 45 * We cannot be really sure what happened but we at least see which threads 46 46 */ … … 62 62 * Constructs a new {@code ReportedException}. 63 63 * @param exception the cause (which is saved for later retrieval by the {@link #getCause()} method) 64 * @param caughtOnThread thread where the exception was caug th64 * @param caughtOnThread thread where the exception was caught 65 65 * @since 14380 66 66 */ … … 277 277 278 278 /** 279 * Check if this is caused by an out of memory situa ition279 * Check if this is caused by an out of memory situation 280 280 * @return <code>true</code> if it is. 281 281 * @since 10819 -
trunk/src/org/openstreetmap/josm/tools/template_engine/Tokenizer.java
r13003 r17333 49 49 public enum TokenType { CONDITION_START, VARIABLE_START, CONTEXT_SWITCH_START, END, PIPE, APOSTROPHE, TEXT, EOF } 50 50 51 private final Set<Character> specialChara ters = new HashSet<>(Arrays.asList('$', '?', '{', '}', '|', '\'', '!'));51 private final Set<Character> specialCharacters = new HashSet<>(Arrays.asList('$', '?', '{', '}', '|', '\'', '!')); 52 52 53 53 private final String template; … … 114 114 return new Token(TokenType.APOSTROPHE, position); 115 115 default: 116 while (c != -1 && !specialChara ters.contains((char) c)) {116 while (c != -1 && !specialCharacters.contains((char) c)) { 117 117 if (c == '\\') { 118 118 getChar();
Note:
See TracChangeset
for help on using the changeset viewer.