Index: applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java
===================================================================
--- applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/MifReader.java	(revision 34153)
@@ -619,5 +619,10 @@
     }
 
-    /** Compare two doubles within a default epsilon */
+    /**
+     * Compare two doubles within a default epsilon
+     * @param a first double
+     * @param b second double
+     * @return {@code true} if {@code a} and {@code b} are equals
+     */
     public static boolean equals(Double a, Double b) {
         if (a == b) return true;
Index: applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java
===================================================================
--- applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java	(revision 34153)
@@ -187,4 +187,5 @@
      * depends on should be missing.
      *
+     * @param parent parent component
      * @param modules the collection of all loaded modules
      * @param module the module for which preconditions are checked
@@ -198,6 +199,5 @@
      * Creates a class loader for loading module code.
      *
-     * @param modules the collection of modules which are going to be loaded with this
-     * class loader
+     * @param modules the collection of modules which are going to be loaded with this class loader
      * @return the class loader
      */
@@ -225,4 +225,5 @@
      * the class loader <code>moduleClassLoader</code>.
      *
+     * @param parent parent component
      * @param module the module
      * @param moduleClassLoader the module class loader
@@ -262,7 +263,7 @@
 
     /**
-     * Loads the module in <code>modules</code> from locally available jar files into
-     * memory.
-     *
+     * Loads the module in <code>modules</code> from locally available jar files into memory.
+     *
+     * @param parent parent component
      * @param modules the list of modules
      * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
@@ -356,7 +357,7 @@
     /**
      * Builds the set of modules to load. Deprecated and unmaintained modules are filtered
-     * out. This involves user interaction. This method displays alert and confirmation
-     * messages.
-     *
+     * out. This involves user interaction. This method displays alert and confirmation messages.
+     *
+     * @param parent parent component
      * @return the set of modules to load (as set of module names)
      */
@@ -417,4 +418,5 @@
      * @param modules the collection of modules to update. Must not be null.
      * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null.
+     * @return list of modules
      * @throws IllegalArgumentException thrown if modules is null
      */
@@ -499,4 +501,5 @@
      * Ask the user for confirmation that a module shall be disabled.
      *
+     * @param parent parent component
      * @param reason the reason for disabling the module
      * @param name the module name
Index: applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleInformation.java
===================================================================
--- applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleInformation.java	(revision 34151)
+++ applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleInformation.java	(revision 34153)
@@ -223,4 +223,5 @@
      * @param klass the module class
      * @return the instantiated and initialized module
+     * @throws ModuleException if the module cannot be loaded or initialized
      */
     public Module load(Class<? extends Module> klass) throws ModuleException {
@@ -237,4 +238,5 @@
      * @param classLoader the class loader to use
      * @return the loaded class
+     * @throws ModuleException if the class cannot be found
      */
     @SuppressWarnings("unchecked")
@@ -326,4 +328,5 @@
     /**
      * Replies the name of the module
+     * @return the name of the module
      */
     public String getName() {
