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/actions/downloadtasks/DownloadTask.java

    r4521 r5266  
    1313     *
    1414     * Set <code>progressMonitor</code> to null, if the task should create, open, and close a progress monitor.
    15      * Set progressMonitor to {@see NullProgressMonitor#INSTANCE} if progress information is to
     15     * Set progressMonitor to {@link NullProgressMonitor#INSTANCE} if progress information is to
    1616     * be discarded.
    1717     *
    1818     * You can wait for the asynchronous download task to finish by synchronizing on the returned
    19      * {@see Future}, but make sure not to freeze up JOSM. Example:
     19     * {@link Future}, but make sure not to freeze up JOSM. Example:
    2020     * <pre>
    2121     *    Future<?> future = task.download(...);
     
    5353     *
    5454     * Set progressMonitor to null, if the task should create, open, and close a progress monitor.
    55      * Set progressMonitor to {@see NullProgressMonitor#INSTANCE} if progress information is to
     55     * Set progressMonitor to {@link NullProgressMonitor#INSTANCE} if progress information is to
    5656     * be discarded.
    5757
     
    7676     * Replies the error objects of the task. Empty list, if no error messages are available.
    7777     *
    78      * Error objects are either {@see String}s with error messages or {@see Exception}s.
     78     * Error objects are either {@link String}s with error messages or {@link Exception}s.
    7979     *
    8080     * @return the list of error objects
Note: See TracChangeset for help on using the changeset viewer.