Ignore:
Timestamp:
2013-04-25T17:57:04+02:00 (11 years ago)
Author:
stoecker
Message:

fix javadoc

Location:
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset
Files:
4 edited

Legend:

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

    r5890 r5903  
    209209     * in the changeset table.
    210210     *
    211      * @return
     211     * @return changset actions panel
    212212     */
    213213    protected JPanel buildChangesetTableActionPanel() {
     
    607607     * respective changesets are already present in the local changeset cache.
    608608     *
    609      * @param ids the collection of changesets. If null, the selection is cleared.
     609     * @param changesets the collection of changesets. If {@code null}, the
     610     * selection is cleared.
    610611     */
    611612    public void setSelectedChangesets(Collection<Changeset> changesets) {
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetContentDownloadTask.java

    r5266 r5903  
    8787     * Creates a download task for a single changeset
    8888     *
    89      * @param parent the parent component for the {@link PleaseWaitDialog}. Must not be null.
    90      * @param changesetId the changeset id. >0 required.
    91      * @throws IllegalArgumentException thrown if changesetId <= 0
    92      * @throws IllegalArgumentException thrown if parent is null
     89     * @param parent the parent component for the {@link org.openstreetmap.josm.gui.PleaseWaitDialog}. Must not be {@code null}.
     90     * @param changesetId the changeset id. {@code >0} required.
     91     * @throws IllegalArgumentException thrown if {@code changesetId <= 0}
     92     * @throws IllegalArgumentException thrown if parent is {@code null}
    9393     */
    9494    public ChangesetContentDownloadTask(Component parent, int changesetId) throws IllegalArgumentException{
     
    103103     * the collection are sillently discarded.
    104104     *
    105      * @param parent the parent component for the {@link PleaseWaitDialog}. Must not be null.
    106      * @param changesetIds the changeset ids. Empty collection assumed, if null.
    107      * @throws IllegalArgumentException thrown if parent is null
     105     * @param parent the parent component for the {@link org.openstreetmap.josm.gui.PleaseWaitDialog}. Must not be {@code null}.
     106     * @param changesetIds the changeset ids. Empty collection assumed, if {@code null}.
     107     * @throws IllegalArgumentException thrown if parent is {@code null}
    108108     */
    109109    public ChangesetContentDownloadTask(Component parent, Collection<Integer> changesetIds) throws IllegalArgumentException {
  • trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java

    r5266 r5903  
    5353     * Ignores null values and changesets with {@link Changeset#isNew()} == true.
    5454     *
    55      * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed.
     55     * @param parent the parent component relative to which the {@link org.openstreetmap.josm.gui.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 {@link PleaseWaitDialog}
     103     * Creates the download task for a collection of changeset ids. Uses a {@link org.openstreetmap.josm.gui.PleaseWaitDialog}
    104104     * whose parent is {@link Main#parent}.
    105105     *
     
    115115
    116116    /**
    117      * Creates the download task for a collection of changeset ids. Uses a {@link PleaseWaitDialog}
     117     * Creates the download task for a collection of changeset ids. Uses a {@link org.openstreetmap.josm.gui.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 {@link PleaseWaitDialog}. Must not be null.
     122     * @param dialogParent the parent reference component for the {@link org.openstreetmap.josm.gui.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/query/ChangesetQueryTask.java

    r5890 r5903  
    6565     * Creates the task.
    6666     *
    67      * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed.
     67     * @param parent the parent component relative to which the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} is displayed.
    6868     * Must not be null.
    6969     * @param query the query to submit to the OSM server. Must not be null.
Note: See TracChangeset for help on using the changeset viewer.