Ignore:
Timestamp:
2008-06-15T12:28:42+02:00 (17 years ago)
Author:
ramack
Message:

patch by bruce89, closes #812; thanks bruce

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r627 r655  
    5858                // (By the eager loaded plugins)
    5959                //
    60                 // These strings cannot be translated. That's live. Really. Sorry.
     60                // These strings cannot be translated. That's life. Really. Sorry.
    6161                //
    6262                //                                                                 Imi.
     
    8383                // get the preferences.
    8484                final File prefDir = new File(Main.pref.getPreferencesDir());
    85 
    8685                // check if preferences directory has moved (TODO: Update code. Remove this after some time)
    8786                File oldPrefDir = new File(System.getProperty("user.home")+"/.josm");
  • trunk/src/org/openstreetmap/josm/gui/MapStatus.java

    r632 r655  
    111111                Collection<OsmPrimitive> osmStatus;
    112112                /**
    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.
    114114                 */
    115115                private int oldModifiers;
     
    251251        /**
    252252         * Construct a new MapStatus and attach it to the map view.
    253          * @param mv The MapView the status line is part of.
     253         * @param mapFrame The MapFrame the status line is part of.
    254254         */
    255255        public MapStatus(final MapFrame mapFrame) {
  • trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java

    r627 r655  
    105105        /**
    106106         * Return the point on the screen where this Coordinate would be.
    107          * @param point The point, where this geopoint would be drawn.
     107         * @param p The point, where this geopoint would be drawn.
    108108         * @return The point on screen where "point" would be drawn, relative
    109109         *              to the own top/left.
     
    117117        /**
    118118         * 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.
    121120         * @param scale The scale to use.
    122121         */
     
    235234         *
    236235         * @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.
    238237         */
    239238        public OsmPrimitive getNearest(Point p) {
  • trunk/src/org/openstreetmap/josm/gui/SelectionManager.java

    r627 r655  
    6262                /**
    6363                 * 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.
    6565                 * @param alt Whether the alt key was pressed
    6666                 * @param shift Whether the shift key was pressed
     
    107107         * Create a new SelectionManager.
    108108         *
    109          * @param actionListener The action listener that receives the event when
     109         * @param selectionEndedListener The action listener that receives the event when
    110110         *              the left button is released.
    111111         * @param aspectRatio If true, the selection window must obtain the aspect
  • trunk/src/org/openstreetmap/josm/gui/dialogs/PropertiesDialog.java

    r627 r655  
    242242
    243243        /**
    244      * @param row
    245244     * @param key
    246245     * @param allData
  • trunk/src/org/openstreetmap/josm/gui/layer/Layer.java

    r627 r655  
    9898         */
    9999        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
    106101        abstract public void visitBoundingBox(BoundingXYVisitor v);
    107102
  • trunk/src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java

    r638 r655  
    224224         * after a successfull upload.
    225225         *
    226          * @param processed A list of all objects, that were actually uploaded.
     226         * @param processed A list of all objects that were actually uploaded.
    227227         *              May be <code>null</code>, which means nothing has been uploaded but
    228228         *              saved to disk instead. Note that an empty collection for "processed"
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/Marker.java

    r627 r655  
    177177         * created from the parameters given.
    178178         *
    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
    181180         * @param relativePath An path to use for constructing relative URLs or
    182181         *        <code>null</code> for no relative URLs
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/MarkerProducers.java

    r627 r655  
    1919         * given input data, or <code>null</code> otherwise.
    2020         *
    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
    2322         * @param relativePath An path to use for constructing relative URLs or
    2423         *        <code>null</code> for no relative URLs
Note: See TracChangeset for help on using the changeset viewer.