Ignore:
Timestamp:
2015-10-23T01:17:45+02:00 (8 years ago)
Author:
Don-vip
Message:

javadoc fixes

Location:
trunk/src/org/openstreetmap/josm/command
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/Command.java

    r8510 r8931  
    220220    /**
    221221     * Replies the layer this command is (or was) applied to.
    222      *
     222     * @return the layer this command is (or was) applied to
    223223     */
    224224    protected OsmDataLayer getLayer() {
     
    241241     * Return the primitives that take part in this command.
    242242     */
    243     @Override public Collection<? extends OsmPrimitive> getParticipatingPrimitives() {
     243    @Override
     244    public Collection<? extends OsmPrimitive> getParticipatingPrimitives() {
    244245        return cloneMap.keySet();
    245246    }
  • trunk/src/org/openstreetmap/josm/command/PurgeCommand.java

    r8510 r8931  
    142142     * Sorts a collection of primitives such that for each object
    143143     * its referrers come later in the sorted collection.
     144     * @return sorted list
    144145     */
    145146    public static List<OsmPrimitive> topoSort(Collection<OsmPrimitive> sel) {
  • trunk/src/org/openstreetmap/josm/command/RotateCommand.java

    r8840 r8931  
    4747
    4848    /**
    49      * Get angle between the horizontal axis and the line formed by the pivot and give points.
     49     * Get angle between the horizontal axis and the line formed by the pivot and given point.
     50     * @return angle between the horizontal axis and the line formed by the pivot and given point
    5051     **/
    5152    protected final double getAngle(EastNorth currentEN) {
  • trunk/src/org/openstreetmap/josm/command/TransformNodesCommand.java

    r8510 r8931  
    119119    /**
    120120     * Get the nodes with the current transformation applied.
     121     * @return nodes with the current transformation applied
    121122     */
    122123    public Collection<Node> getTransformedNodes() {
     
    127128     * Get the center of the nodes under modification.
    128129     * It's just the barycenter.
     130     * @return center east/north of the nodes under modification
    129131     * @see org.openstreetmap.josm.tools.Geometry#getCentroid(java.util.List)
    130132     */
Note: See TracChangeset for help on using the changeset viewer.