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"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmServerBackreferenceReader.java

    r5251 r5266  
    2121/**
    2222 * OsmServerBackreferenceReader fetches the primitives from the OSM server which
    23  * refer to a specific primitive. For a {@see Node}, ways and relations are retrieved
    24  * which refer to the node. For a {@see Way} or a {@see Relation}, only relations are
     23 * refer to a specific primitive. For a {@link Node}, ways and relations are retrieved
     24 * which refer to the node. For a {@link Way} or a {@link Relation}, only relations are
    2525 * read.
    2626 *
     
    2929 * of these calls is to reply incomplete primitives only.
    3030 *
    31  * If you set {@see #setReadFull(boolean)} to true this reader uses a {@see MultiFetchServerObjectReader}
     31 * If you set {@link #setReadFull(boolean)} to true this reader uses a {@link MultiFetchServerObjectReader}
    3232 * to complete incomplete primitives.
    3333 *
     
    123123
    124124    /**
    125      * Reads referring ways from the API server and replies them in a {@see DataSet}
     125     * Reads referring ways from the API server and replies them in a {@link DataSet}
    126126     *
    127127     * @return the data set
     
    160160
    161161    /**
    162      * Reads referring relations from the API server and replies them in a {@see DataSet}
     162     * Reads referring relations from the API server and replies them in a {@link DataSet}
    163163     *
    164164     * @param progressMonitor the progress monitor
     
    203203     *
    204204     * <ul>
    205      *   <li>if this reader reads referers for a {@see Node}, referring ways are always
     205     *   <li>if this reader reads referers for a {@link Node}, referring ways are always
    206206     *     read individually from the server</li>
    207      *   <li>if this reader reads referers for an {@see Way} or a {@see Relation}, referring relations
    208      *    are only read fully if {@see #setReadFull(boolean)} is set to true.</li>
     207     *   <li>if this reader reads referers for an {@link Way} or a {@link Relation}, referring relations
     208     *    are only read fully if {@link #setReadFull(boolean)} is set to true.</li>
    209209     * </ul>
    210210     *
     
    249249    /**
    250250     * Reads the referring primitives from the OSM server, parses them and
    251      * replies them as {@see DataSet}
    252      *
    253      * @param progressMonitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null.
     251     * replies them as {@link DataSet}
     252     *
     253     * @param progressMonitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null.
    254254     * @return the dataset with the referring primitives
    255255     * @exception OsmTransferException thrown if an error occurs while communicating with the server
Note: See TracChangeset for help on using the changeset viewer.