Changeset 655 in josm for trunk/src/org/openstreetmap/josm/gui
- Timestamp:
- 2008-06-15T12:28:42+02:00 (17 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r627 r655 58 58 // (By the eager loaded plugins) 59 59 // 60 // These strings cannot be translated. That's li ve. Really. Sorry.60 // These strings cannot be translated. That's life. Really. Sorry. 61 61 // 62 62 // Imi. … … 83 83 // get the preferences. 84 84 final File prefDir = new File(Main.pref.getPreferencesDir()); 85 86 85 // check if preferences directory has moved (TODO: Update code. Remove this after some time) 87 86 File oldPrefDir = new File(System.getProperty("user.home")+"/.josm"); -
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r632 r655 111 111 Collection<OsmPrimitive> osmStatus; 112 112 /** 113 * The old modifiers ,that was pressed the last time this collector ran.113 * The old modifiers that was pressed the last time this collector ran. 114 114 */ 115 115 private int oldModifiers; … … 251 251 /** 252 252 * Construct a new MapStatus and attach it to the map view. 253 * @param m vThe MapViewthe status line is part of.253 * @param mapFrame The MapFrame the status line is part of. 254 254 */ 255 255 public MapStatus(final MapFrame mapFrame) { -
trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
r627 r655 105 105 /** 106 106 * Return the point on the screen where this Coordinate would be. 107 * @param p ointThe point, where this geopoint would be drawn.107 * @param p The point, where this geopoint would be drawn. 108 108 * @return The point on screen where "point" would be drawn, relative 109 109 * to the own top/left. … … 117 117 /** 118 118 * Zoom to the given coordinate. 119 * @param centerX The center x-value (easting) to zoom to. 120 * @param centerY The center y-value (northing) to zoom to. 119 * @param newCenter The center x-value (easting) to zoom to. 121 120 * @param scale The scale to use. 122 121 */ … … 235 234 * 236 235 * @param p The point on screen. 237 * @return The primitive ,that is nearest to the point p.236 * @return The primitive that is nearest to the point p. 238 237 */ 239 238 public OsmPrimitive getNearest(Point p) { -
trunk/src/org/openstreetmap/josm/gui/SelectionManager.java
r627 r655 62 62 /** 63 63 * Called, when the left mouse button was released. 64 * @param r The rectangle ,that is currently the selection.64 * @param r The rectangle that is currently the selection. 65 65 * @param alt Whether the alt key was pressed 66 66 * @param shift Whether the shift key was pressed … … 107 107 * Create a new SelectionManager. 108 108 * 109 * @param actionListener The action listener that receives the event when109 * @param selectionEndedListener The action listener that receives the event when 110 110 * the left button is released. 111 111 * @param aspectRatio If true, the selection window must obtain the aspect -
trunk/src/org/openstreetmap/josm/gui/dialogs/PropertiesDialog.java
r627 r655 242 242 243 243 /** 244 * @param row245 244 * @param key 246 245 * @param allData -
trunk/src/org/openstreetmap/josm/gui/layer/Layer.java
r627 r655 98 98 */ 99 99 abstract public boolean isMergable(Layer other); 100 101 /** 102 * @return The bounding rectangle this layer occupies on screen when looking 103 * at x/y values or <code>null</code>, if infinite area or unknown 104 * area is occupied. 105 */ 100 106 101 abstract public void visitBoundingBox(BoundingXYVisitor v); 107 102 -
trunk/src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java
r638 r655 224 224 * after a successfull upload. 225 225 * 226 * @param processed A list of all objects ,that were actually uploaded.226 * @param processed A list of all objects that were actually uploaded. 227 227 * May be <code>null</code>, which means nothing has been uploaded but 228 228 * saved to disk instead. Note that an empty collection for "processed" -
trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/Marker.java
r627 r655 177 177 * created from the parameters given. 178 178 * 179 * @param ll lat/lon for marker 180 * @param data hash containing keys and values from the GPX waypoint structure 179 * @param wpt waypoint data for marker 181 180 * @param relativePath An path to use for constructing relative URLs or 182 181 * <code>null</code> for no relative URLs -
trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/MarkerProducers.java
r627 r655 19 19 * given input data, or <code>null</code> otherwise. 20 20 * 21 * @param ll lat/lon for the marker position 22 * @param data A map of all tags found in the <wpt> node of the gpx file. 21 * @param wp waypoint data 23 22 * @param relativePath An path to use for constructing relative URLs or 24 23 * <code>null</code> for no relative URLs
Note:
See TracChangeset
for help on using the changeset viewer.