Changeset 2711 in josm for trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java
- Timestamp:
- 2009-12-30T20:18:59+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetHeaderDownloadTask.java
r2689 r2711 29 29 * This is an asynchronous task for downloading a collection of changests from the OSM 30 30 * server. 31 * 31 * 32 32 * The task only downloads the changeset properties without the changeset content. It 33 33 * updates the global {@see ChangesetCache}. 34 * 34 * 35 35 */ 36 36 public class ChangesetHeaderDownloadTask extends PleaseWaitRunnable implements ChangesetDownloadTask{ … … 38 38 /** 39 39 * Builds a download task from for a collection of changesets. 40 * 40 * 41 41 * Ignores null values and changesets with {@see Changeset#isNew()} == true. 42 * 42 * 43 43 * @param changesets the collection of changesets. Assumes an empty collection if null. 44 44 * @return the download task … … 50 50 /** 51 51 * Builds a download task from for a collection of changesets. 52 * 52 * 53 53 * Ignores null values and changesets with {@see Changeset#isNew()} == true. 54 * 54 * 55 55 * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed. 56 56 * Must not be null. … … 78 78 79 79 } 80 81 80 82 81 private Set<Integer> idsToDownload; … … 104 103 * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog} 105 104 * whose parent is {@see Main#parent}. 106 * 105 * 107 106 * Null ids or or ids <= 0 in the id collection are ignored. 108 * 107 * 109 108 * @param ids the collection of ids. Empty collection assumed if null. 110 109 */ … … 118 117 * Creates the download task for a collection of changeset ids. Uses a {@see PleaseWaitDialog} 119 118 * whose parent is the parent window of <code>dialogParent</code>. 120 * 119 * 121 120 * Null ids or or ids <= 0 in the id collection are ignored. 122 * 121 * 123 122 * @param dialogParent the parent reference component for the {@see PleaseWaitDialog}. Must not be null. 124 123 * @param ids the collection of ids. Empty collection assumed if null.
Note:
See TracChangeset
for help on using the changeset viewer.