Changeset 5836 in josm for trunk/src/org/openstreetmap/josm/plugins
- Timestamp:
- 2013-04-07T23:18:22+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/plugins
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/Plugin.java
r5241 r5836 69 69 * Sets the plugin information object for this plugin 70 70 * 71 * @par mainfo the plugin information object71 * @param info the plugin information object 72 72 */ 73 73 public void setPluginInformation(PluginInformation info) { -
trunk/src/org/openstreetmap/josm/plugins/PluginDownloadTask.java
r5587 r5836 45 45 * Creates the download task 46 46 * 47 * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed47 * @param parent the parent component relative to which the {@link org.openstreetmap.josm.gui.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 {@link PleaseWaitDialog}49 * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} 50 50 * @throws IllegalArgumentException thrown if toUpdate is null 51 51 */ … … 61 61 * @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 {@link PleaseWaitDialog}63 * @param title the title to display in the {@link org.openstreetmap.josm.gui.PleaseWaitDialog} 64 64 * @throws IllegalArgumentException thrown if toUpdate is null 65 65 */ … … 178 178 * Replies true if the task was canceled by the user 179 179 * 180 * @return 180 * @return <code>true</code> if the task was stopped by the user 181 181 */ 182 182 public boolean isCanceled() { -
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r5723 r5836 294 294 * Load and instantiate the plugin 295 295 * 296 * @param the plugin class296 * @param klass the plugin class 297 297 * @return the instantiated and initialized plugin 298 298 */ -
trunk/src/org/openstreetmap/josm/plugins/ReadLocalPluginInformationTask.java
r5723 r5836 25 25 * in the local plugin repositories. 26 26 * 27 * It scans the files in the local plugins repository (see {@link Preferences#getPluginsDirectory()}27 * It scans the files in the local plugins repository (see {@link org.openstreetmap.josm.data.Preferences#getPluginsDirectory()} 28 28 * and extracts plugin information from three kind of files: 29 29 * <ul> -
trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
r5601 r5836 372 372 /** 373 373 * Replies true if the task was canceled 374 * @return 374 * @return <code>true</code> if the task was stopped by the user 375 375 */ 376 376 public boolean isCanceled() {
Note:
See TracChangeset
for help on using the changeset viewer.