Changeset 34271 in osm for applications/editors/josm


Ignore:
Timestamp:
2018-06-11T21:21:40+02:00 (6 years ago)
Author:
donvip
Message:

fix some javadoc issues

Location:
applications/editors/josm/plugins/reverter/src/reverter/corehacks
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmChangesetContentParser.java

    r32905 r34271  
    287287     * @param source the input stream with the changeset content as XML document. Must not be null.
    288288     * @throws IllegalArgumentException thrown if source is null.
     289     * @throws UnsupportedEncodingException if the named charset is not supported
    289290     */
    290291    public OsmChangesetContentParser(InputStream source) throws UnsupportedEncodingException {
     
    303304     * Parses the content
    304305     *
    305      * @param progressMonitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE}
     306     * @param progressMonitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE}
    306307     * if null
    307308     * @return the parsed data
  • applications/editors/josm/plugins/reverter/src/reverter/corehacks/OsmServerChangesetReader.java

    r34208 r34271  
    1616import org.openstreetmap.josm.data.osm.Changeset;
    1717import org.openstreetmap.josm.data.osm.DataSet;
     18import org.openstreetmap.josm.data.osm.OsmPrimitive;
    1819import org.openstreetmap.josm.gui.progress.NullProgressMonitor;
    1920import org.openstreetmap.josm.gui.progress.ProgressMonitor;
     
    2728
    2829/**
    29  * Reads the history of an {@see OsmPrimitive} from the OSM API server.
     30 * Reads the history of an {@link OsmPrimitive} from the OSM API server.
    3031 *
    3132 */
     
    5253     * Queries a list
    5354     * @param query  the query specification. Must not be null.
    54      * @param monitor a progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
     55     * @param monitor a progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
    5556     * @return the list of changesets read from the server
    5657     * @throws IllegalArgumentException thrown if query is null
     
    8384     * Reads the changeset with id <code>id</code> from the server
    8485     *
    85      * @param id  the changeset id. id > 0 required.
    86      * @param monitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
     86     * @param id  the changeset id. id &gt; 0 required.
     87     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
    8788     * @return the changeset read
    8889     * @throws OsmTransferException thrown if something goes wrong
    89      * @throws IllegalArgumentException if id <= 0
     90     * @throws IllegalArgumentException if id &lt;= 0
    9091     */
    9192    public Changeset readChangeset(long id, ProgressMonitor monitor) throws OsmTransferException {
     
    119120     * Reads the changeset with id <code>id</code> from the server
    120121     *
    121      * @param ids  the list of ids. Ignored if null. Only load changesets for ids > 0.
    122      * @param monitor the progress monitor. Set to {@see NullProgressMonitor#INSTANCE} if null
     122     * @param ids  the list of ids. Ignored if null. Only load changesets for ids &gt; 0.
     123     * @param monitor the progress monitor. Set to {@link NullProgressMonitor#INSTANCE} if null
    123124     * @return the changeset read
    124125     * @throws OsmTransferException thrown if something goes wrong
    125      * @throws IllegalArgumentException if id <= 0
     126     * @throws IllegalArgumentException if id &lt;= 0
    126127     */
    127128    public List<Changeset> readChangesets(Collection<Integer> ids, ProgressMonitor monitor) throws OsmTransferException {
     
    168169     * Downloads the content of a changeset
    169170     *
    170      * @param id the changeset id. >0 required.
    171      * @param monitor the progress monitor. {@see NullProgressMonitor#INSTANCE} assumed if null.
     171     * @param id the changeset id. &gt;0 required.
     172     * @param monitor the progress monitor. {@link NullProgressMonitor#INSTANCE} assumed if null.
    172173     * @return the changeset content
    173      * @throws IllegalArgumentException thrown if id <= 0
     174     * @throws IllegalArgumentException thrown if id &lt;= 0
    174175     * @throws OsmTransferException thrown if something went wrong
    175176     */
Note: See TracChangeset for help on using the changeset viewer.