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/gui/dialogs/changeset
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerModel.java

    r3083 r5266  
    4848    /**
    4949     * Sets the changeset currently displayed in the detail view. Fires a property change event
    50      * for the property {@see #CHANGESET_IN_DETAIL_VIEW_PROP} if necessary.
     50     * for the property {@link #CHANGESET_IN_DETAIL_VIEW_PROP} if necessary.
    5151     *
    5252     * @param cs the changeset currently displayed in the detail view.
     
    118118     * Selects the changeset displayed at row <code>row</code>
    119119     *
    120      * @param row the row. Ignored if < 0 or >= {@see #getRowCount()}
     120     * @param row the row. Ignored if < 0 or >= {@link #getRowCount()}
    121121     */
    122122    public void setSelectedByIdx(int row) {
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentDownloadTask.java

    r4310 r5266  
    8787     * Creates a download task for a single changeset
    8888     *
    89      * @param parent the parent component for the {@see PleaseWaitDialog}. Must not be null.
     89     * @param parent the parent component for the {@link PleaseWaitDialog}. Must not be null.
    9090     * @param changesetId the changeset id. >0 required.
    9191     * @throws IllegalArgumentException thrown if changesetId <= 0
     
    103103     * the collection are sillently discarded.
    104104     *
    105      * @param parent the parent component for the {@see PleaseWaitDialog}. Must not be null.
     105     * @param parent the parent component for the {@link PleaseWaitDialog}. Must not be null.
    106106     * @param changesetIds the changeset ids. Empty collection assumed, if null.
    107107     * @throws IllegalArgumentException thrown if parent is null
     
    113113
    114114    /**
    115      * Replies true if the local {@see ChangesetCache} already includes the changeset with
     115     * Replies true if the local {@link ChangesetCache} already includes the changeset with
    116116     * id <code>changesetId</code>.
    117117     *
    118118     * @param changesetId the changeset id
    119      * @return true if the local {@see ChangesetCache} already includes the changeset with
     119     * @return true if the local {@link ChangesetCache} already includes the changeset with
    120120     * id <code>changesetId</code>
    121121     */
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentPanel.java

    r4786 r5266  
    5757 * The panel which displays the content of a changeset in a scollable table.
    5858 *
    59  * It listens to property change events for {@see ChangesetCacheManagerModel#CHANGESET_IN_DETAIL_VIEW_PROP}
     59 * It listens to property change events for {@link ChangesetCacheManagerModel#CHANGESET_IN_DETAIL_VIEW_PROP}
    6060 * and updates its view accordingly.
    6161 *
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableCellRenderer.java

    r4072 r5266  
    1616/**
    1717 * The table cell renderer used in the changeset content table, except for the "name"
    18  * column in which we use a {@see OsmPrimitivRenderer}.
     18 * column in which we use a {@link OsmPrimitivRenderer}.
    1919 *
    2020 */
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentTableModel.java

    r3083 r5266  
    131131
    132132    /**
    133      * The type used internally to keep information about {@see HistoryOsmPrimitive}
    134      * with their {@see ChangesetModificationType}.
     133     * The type used internally to keep information about {@link HistoryOsmPrimitive}
     134     * with their {@link ChangesetModificationType}.
    135135     *
    136136     */
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetDetailPanel.java

    r3995 r5266  
    4444/**
    4545 * This panel displays the properties of the currently selected changeset in the
    46  * {@see ChangesetCacheManager}.
     46 * {@link ChangesetCacheManager}.
    4747 *
    4848 */
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java

    r4310 r5266  
    3131 *
    3232 * The  task only downloads the changeset properties without the changeset content. It
    33  * updates the global {@see ChangesetCache}.
     33 * updates the global {@link ChangesetCache}.
    3434 *
    3535 */
     
    3939     * Builds a download task from for a collection of changesets.
    4040     *
    41      * Ignores null values and changesets with {@see Changeset#isNew()} == true.
     41     * Ignores null values and changesets with {@link Changeset#isNew()} == true.
    4242     *
    4343     * @param changesets the collection of changesets. Assumes an empty collection if null.
     
    5151     * Builds a download task from for a collection of changesets.
    5252     *
    53      * Ignores null values and changesets with {@see Changeset#isNew()} == true.
    54      *
    55      * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed.
     53     * Ignores null values and changesets with {@link Changeset#isNew()} == true.
     54     *
     55     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed.
    5656     * Must not be null.
    5757     * @param changesets the collection of changesets. Assumes an empty collection if null.
     
    101101
    102102    /**
    103      * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog}
    104      * whose parent is {@see Main#parent}.
     103     * Creates the download task for a collection of changeset ids. Uses a {@link PleaseWaitDialog}
     104     * whose parent is {@link Main#parent}.
    105105     *
    106106     * Null ids or or ids <= 0 in the id collection are ignored.
     
    115115
    116116    /**
    117      * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog}
     117     * Creates the download task for a collection of changeset ids. Uses a {@link PleaseWaitDialog}
    118118     * whose parent is the parent window of <code>dialogParent</code>.
    119119     *
    120120     * Null ids or or ids <= 0 in the id collection are ignored.
    121121     *
    122      * @param dialogParent the parent reference component for the {@see PleaseWaitDialog}. Must not be null.
     122     * @param dialogParent the parent reference component for the {@link PleaseWaitDialog}. Must not be null.
    123123     * @param ids the collection of ids. Empty collection assumed if null.
    124124     * @throws IllegalArgumentException thrown if dialogParent is null
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetTagsPanel.java

    r3141 r5266  
    1515
    1616/**
    17  * This panel displays the tags of the currently selected changeset in the {@see ChangesetCacheManager}
     17 * This panel displays the tags of the currently selected changeset in the {@link ChangesetCacheManager}
    1818 *
    1919 */
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/SingleChangesetDownloadPanel.java

    r3083 r5266  
    116116
    117117    /**
    118      * Validator for a changeset ID entered in a {@see JTextComponent}.
     118     * Validator for a changeset ID entered in a {@link JTextComponent}.
    119119     *
    120120     */
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/AdvancedChangesetQueryPanel.java

    r4307 r5266  
    960960
    961961    /**
    962      * Validator for user ids entered in in a {@see JTextComponent}.
     962     * Validator for user ids entered in in a {@link JTextComponent}.
    963963     *
    964964     */
     
    10361036
    10371037    /**
    1038      * Validates dates entered as text in in a {@see JTextComponent}. Validates the input
     1038     * Validates dates entered as text in in a {@link JTextComponent}. Validates the input
    10391039     * on the fly and gives feedback about whether the date is valid or not.
    10401040     *
     
    10991099
    11001100    /**
    1101      * Validates time values entered as text in in a {@see JTextComponent}. Validates the input
     1101     * Validates time values entered as text in in a {@link JTextComponent}. Validates the input
    11021102     * on the fly and gives feedback about whether the time value is valid or not.
    11031103     *
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/ChangesetQueryTask.java

    r4310 r5266  
    6262     * Creates the task.
    6363     *
    64      * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed.
     64     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed.
    6565     * Must not be null.
    6666     * @param query the query to submit to the OSM server. Must not be null.
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java

    r3530 r5266  
    140140
    141141    /**
    142      * Replies the {@see ChangesetQuery} specified in this panel. null, if no valid changeset query
     142     * Replies the {@link ChangesetQuery} specified in this panel. null, if no valid changeset query
    143143     * is specified.
    144144     *
Note: See TracChangeset for help on using the changeset viewer.