Ignore:
Timestamp:
2012-06-03T16:41:25+02:00 (12 years ago)
Author:
bastiK
Message:

fixed majority of javadoc warnings by replacing "{@see" by "{@link"

Location:
trunk/src/org/openstreetmap/josm/data/osm/history
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSet.java

    r4191 r5266  
    148148
    149149    /**
    150      * merges the histories from the {@see HistoryDataSet} other in this history data set
     150     * merges the histories from the {@link HistoryDataSet} other in this history data set
    151151     *
    152152     * @param other the other history data set. Ignored if null.
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSetListener.java

    r3530 r5266  
    66public interface HistoryDataSetListener {
    77    /**
    8      * Fired by a {@see HistoryDataSet} if the cached history of an OSM primitive with
     8     * Fired by a {@link HistoryDataSet} if the cached history of an OSM primitive with
    99     * id <code>id</code> is updated
    1010     *
     
    1515
    1616    /**
    17      * Fired by a {@see HistoryDataSet} if the history cached is cleared.
     17     * Fired by a {@link HistoryDataSet} if the history cached is cleared.
    1818     *
    1919     * @param source the history data set firing the event
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryOsmPrimitive.java

    r4602 r5266  
    219219        if (!(obj instanceof HistoryOsmPrimitive))
    220220            return false;
    221         // equal semantics is valid for subclasses like {@see HistoryOsmNode} etc. too.
     221        // equal semantics is valid for subclasses like {@link HistoryOsmNode} etc. too.
    222222        // So, don't enforce equality of class.
    223223        //
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryRelation.java

    r4734 r5266  
    9898
    9999    /**
    100      * replies the type, i.e. {@see OsmPrimitiveType#RELATION}
     100     * replies the type, i.e. {@link OsmPrimitiveType#RELATION}
    101101     *
    102102     */
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryWay.java

    r4602 r5266  
    6666
    6767    /**
    68      * replies the ways type, i.e. {@see OsmPrimitiveType#WAY}
     68     * replies the ways type, i.e. {@link OsmPrimitiveType#WAY}
    6969     *
    7070     * @return the ways type
Note: See TracChangeset for help on using the changeset viewer.