Ignore:
Timestamp:
2018-04-08T15:09:55+02:00 (7 years ago)
Author:
donvip
Message:

fix javadoc warnings

Location:
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleDownloadTask.java

    r33518 r34151  
    1717
    1818import org.openstreetmap.josm.data.Version;
     19import org.openstreetmap.josm.gui.PleaseWaitDialog;
    1920import org.openstreetmap.josm.gui.PleaseWaitRunnable;
    2021import org.openstreetmap.josm.gui.progress.NullProgressMonitor;
     
    2829 * Asynchronous task for downloading a collection of modules.
    2930 *
    30  * When the task is finished {@see #getDownloadedModules()} replies the list of downloaded modules
    31  * and {@see #getFailedModules()} replies the list of failed modules.
     31 * When the task is finished {@link #getDownloadedModules()} replies the list of downloaded modules
     32 * and {@link #getFailedModules()} replies the list of failed modules.
    3233 *
    3334 */
     
    4344     * Creates the download task
    4445     *
    45      * @param parent the parent component relative to which the {@see PleaseWaitDialog} is displayed
     46     * @param parent the parent component relative to which the {@link PleaseWaitDialog} is displayed
    4647     * @param toUpdate a collection of module descriptions for modules to update/download. Must not be null.
    47      * @param title the title to display in the {@see PleaseWaitDialog}
     48     * @param title the title to display in the {@link PleaseWaitDialog}
    4849     * @throws IllegalArgumentException thrown if toUpdate is null
    4950     */
     
    5758     * Creates the task
    5859     *
    59      * @param monitor a progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
     60     * @param monitor a progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
    6061     * @param toUpdate a collection of module descriptions for modules to update/download. Must not be null.
    61      * @param title the title to display in the {@see PleaseWaitDialog}
     62     * @param title the title to display in the {@link PleaseWaitDialog}
    6263     * @throws IllegalArgumentException thrown if toUpdate is null
    6364     */
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java

    r33790 r34151  
    266266     *
    267267     * @param modules the list of modules
    268      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     268     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    269269     */
    270270    public static void loadModules(Component parent, Collection<ModuleInformation> modules, ProgressMonitor monitor) {
     
    302302     * module lists.
    303303     *
    304      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     304     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    305305     * @return the list of locally available module information
    306306     *
     
    416416     * @param parent the parent window for message boxes
    417417     * @param modules the collection of modules to update. Must not be null.
    418      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null.
     418     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
    419419     * @throws IllegalArgumentException thrown if modules is null
    420420     */
     
    622622    }*/
    623623
    624     /**
     624    /*
    625625     * Replies the module which most likely threw the exception <code>ex</code>.
    626626     *
     
    647647    }*/
    648648
    649     /**
     649    /*
    650650     * Checks whether the exception <code>e</code> was thrown by a module. If so,
    651651     * conditionally deactivates the module, but asks the user first.
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleInformation.java

    r33518 r34151  
    221221     * Load and instantiate the module
    222222     *
    223      * @param the module class
     223     * @param klass the module class
    224224     * @return the instantiated and initialized module
    225225     */
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ReadLocalModuleInformationTask.java

    r33518 r34151  
    1717import org.openstreetmap.josm.gui.progress.ProgressMonitor;
    1818import org.openstreetmap.josm.io.OsmTransferException;
     19import org.openstreetmap.josm.plugins.opendata.OdPlugin;
    1920import org.openstreetmap.josm.tools.ImageProvider;
    2021import org.openstreetmap.josm.tools.Logging;
     
    2526 * in the local module repositories.
    2627 *
    27  * It scans the files in the local modules repository (see {@see Preferences#getModulesDirectory()}
     28 * It scans the files in the local modules repository (see {@link OdPlugin#getModulesDirectory()}
    2829 * and extracts module information from three kind of files:
    2930 * <ul>
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ReadRemoteModuleInformationTask.java

    r33518 r34151  
    6969     * Creates the task
    7070     *
    71      * @param monitor the progress monitor. Defaults to {@see NullProgressMonitor#INSTANCE} if null
     71     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null
    7272     * @param sites the collection of download sites. Defaults to the empty collection if null.
    7373     */
Note: See TracChangeset for help on using the changeset viewer.