Changeset 8291 in josm for trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
- Timestamp:
- 2015-04-29T01:44:01+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
r8061 r8291 54 54 * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null. 55 55 * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} 56 * @throws IllegalArgumentException thrownif toUpdate is null57 */ 58 public PluginDownloadTask(Component parent, Collection<PluginInformation> toUpdate, String title) throws IllegalArgumentException{56 * @throws IllegalArgumentException if toUpdate is null 57 */ 58 public PluginDownloadTask(Component parent, Collection<PluginInformation> toUpdate, String title) { 59 59 super(parent, title == null ? "" : title, false /* don't ignore exceptions */); 60 60 CheckParameterUtil.ensureParameterNotNull(toUpdate, "toUpdate"); … … 68 68 * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null. 69 69 * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} 70 * @throws IllegalArgumentException thrownif toUpdate is null70 * @throws IllegalArgumentException if toUpdate is null 71 71 */ 72 72 public PluginDownloadTask(ProgressMonitor monitor, Collection<PluginInformation> toUpdate, String title) { … … 80 80 * 81 81 * @param toUpdate the collection of plugins to update. Must not be null. 82 * @throws IllegalArgumentException thrownif toUpdate is null83 */ 84 public void setPluginsToDownload(Collection<PluginInformation> toUpdate) throws IllegalArgumentException{82 * @throws IllegalArgumentException if toUpdate is null 83 */ 84 public void setPluginsToDownload(Collection<PluginInformation> toUpdate) { 85 85 CheckParameterUtil.ensureParameterNotNull(toUpdate, "toUpdate"); 86 86 this.toUpdate.clear();
Note:
See TracChangeset
for help on using the changeset viewer.