Changeset 5266 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2012-06-03T16:41:25+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
r4310 r5266 30 30 * Asynchronous task for downloading a collection of plugins. 31 31 * 32 * When the task is finished {@ see#getDownloadedPlugins()} replies the list of downloaded plugins33 * and {@ see#getFailedPlugins()} replies the list of failed plugins.32 * When the task is finished {@link #getDownloadedPlugins()} replies the list of downloaded plugins 33 * and {@link #getFailedPlugins()} replies the list of failed plugins. 34 34 * 35 35 */ … … 45 45 * Creates the download task 46 46 * 47 * @param parent the parent component relative to which the {@ seePleaseWaitDialog} is displayed47 * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed 48 48 * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null. 49 * @param title the title to display in the {@ seePleaseWaitDialog}49 * @param title the title to display in the {@link PleaseWaitDialog} 50 50 * @throws IllegalArgumentException thrown if toUpdate is null 51 51 */ … … 59 59 * Creates the task 60 60 * 61 * @param monitor a progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null61 * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null 62 62 * @param toUpdate a collection of plugin descriptions for plugins to update/download. Must not be null. 63 * @param title the title to display in the {@ seePleaseWaitDialog}63 * @param title the title to display in the {@link PleaseWaitDialog} 64 64 * @throws IllegalArgumentException thrown if toUpdate is null 65 65 */ -
trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
r5194 r5266 519 519 * 520 520 * @param plugins the list of plugins 521 * @param monitor the progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null.521 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. 522 522 */ 523 523 public static void loadPlugins(Component parent,Collection<PluginInformation> plugins, ProgressMonitor monitor) { … … 564 564 565 565 /** 566 * Loads plugins from <code>plugins</code> which have the flag {@ seePluginInformation#early}566 * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early} 567 567 * set to true. 568 568 * 569 569 * @param plugins the collection of plugins 570 * @param monitor the progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null.570 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. 571 571 */ 572 572 public static void loadEarlyPlugins(Component parent, Collection<PluginInformation> plugins, ProgressMonitor monitor) { … … 581 581 582 582 /** 583 * Loads plugins from <code>plugins</code> which have the flag {@ seePluginInformation#early}583 * Loads plugins from <code>plugins</code> which have the flag {@link PluginInformation#early} 584 584 * set to false. 585 585 * 586 586 * @param plugins the collection of plugins 587 * @param monitor the progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null.587 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. 588 588 */ 589 589 public static void loadLatePlugins(Component parent, Collection<PluginInformation> plugins, ProgressMonitor monitor) { … … 601 601 * plugin lists. 602 602 * 603 * @param monitor the progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null.603 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. 604 604 * @return the list of locally available plugin information 605 605 * … … 661 661 * messages. 662 662 * 663 * @param monitor the progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null.663 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. 664 664 * @return the set of plugins to load (as set of plugin names) 665 665 */ … … 731 731 * @param parent the parent component for message boxes 732 732 * @param plugins the collection of plugins to update. Must not be null. 733 * @param monitor the progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null.733 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. 734 734 * @throws IllegalArgumentException thrown if plugins is null 735 735 */ -
trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java
r4737 r5266 25 25 * in the local plugin repositories. 26 26 * 27 * It scans the files in the local plugins repository (see {@ seePreferences#getPluginsDirectory()}27 * It scans the files in the local plugins repository (see {@link Preferences#getPluginsDirectory()} 28 28 * and extracts plugin information from three kind of files: 29 29 * <ul> -
trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
r4721 r5266 72 72 * Creates the task 73 73 * 74 * @param monitor the progress monitor. Defaults to {@ seeNullProgressMonitor#INSTANCE} if null74 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null 75 75 * @param sites the collection of download sites. Defaults to the empty collection if null. 76 76 */
Note:
See TracChangeset
for help on using the changeset viewer.