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

fix javadoc warnings

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

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java

    r33518 r34153  
    619619    }
    620620
    621     /** Compare two doubles within a default epsilon */
     621    /**
     622     * Compare two doubles within a default epsilon
     623     * @param a first double
     624     * @param b second double
     625     * @return {@code true} if {@code a} and {@code b} are equals
     626     */
    622627    public static boolean equals(Double a, Double b) {
    623628        if (a == b) return true;
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java

    r34151 r34153  
    187187     * depends on should be missing.
    188188     *
     189     * @param parent parent component
    189190     * @param modules the collection of all loaded modules
    190191     * @param module the module for which preconditions are checked
     
    198199     * Creates a class loader for loading module code.
    199200     *
    200      * @param modules the collection of modules which are going to be loaded with this
    201      * class loader
     201     * @param modules the collection of modules which are going to be loaded with this class loader
    202202     * @return the class loader
    203203     */
     
    225225     * the class loader <code>moduleClassLoader</code>.
    226226     *
     227     * @param parent parent component
    227228     * @param module the module
    228229     * @param moduleClassLoader the module class loader
     
    262263
    263264    /**
    264      * Loads the module in <code>modules</code> from locally available jar files into
    265      * memory.
    266      *
     265     * Loads the module in <code>modules</code> from locally available jar files into memory.
     266     *
     267     * @param parent parent component
    267268     * @param modules the list of modules
    268269     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
     
    356357    /**
    357358     * Builds the set of modules to load. Deprecated and unmaintained modules are filtered
    358      * out. This involves user interaction. This method displays alert and confirmation
    359      * messages.
    360      *
     359     * out. This involves user interaction. This method displays alert and confirmation messages.
     360     *
     361     * @param parent parent component
    361362     * @return the set of modules to load (as set of module names)
    362363     */
     
    417418     * @param modules the collection of modules to update. Must not be null.
    418419     * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
     420     * @return list of modules
    419421     * @throws IllegalArgumentException thrown if modules is null
    420422     */
     
    499501     * Ask the user for confirmation that a module shall be disabled.
    500502     *
     503     * @param parent parent component
    501504     * @param reason the reason for disabling the module
    502505     * @param name the module name
  • applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleInformation.java

    r34151 r34153  
    223223     * @param klass the module class
    224224     * @return the instantiated and initialized module
     225     * @throws ModuleException if the module cannot be loaded or initialized
    225226     */
    226227    public Module load(Class<? extends Module> klass) throws ModuleException {
     
    237238     * @param classLoader the class loader to use
    238239     * @return the loaded class
     240     * @throws ModuleException if the class cannot be found
    239241     */
    240242    @SuppressWarnings("unchecked")
     
    326328    /**
    327329     * Replies the name of the module
     330     * @return the name of the module
    328331     */
    329332    public String getName() {
Note: See TracChangeset for help on using the changeset viewer.