Changeset 34153 in osm for applications/editors/josm/plugins/opendata/src/org/openstreetmap
- Timestamp:
- 2018-04-08T15:24:48+02:00 (7 years ago)
- 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 619 619 } 620 620 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 */ 622 627 public static boolean equals(Double a, Double b) { 623 628 if (a == b) return true; -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleHandler.java
r34151 r34153 187 187 * depends on should be missing. 188 188 * 189 * @param parent parent component 189 190 * @param modules the collection of all loaded modules 190 191 * @param module the module for which preconditions are checked … … 198 199 * Creates a class loader for loading module code. 199 200 * 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 202 202 * @return the class loader 203 203 */ … … 225 225 * the class loader <code>moduleClassLoader</code>. 226 226 * 227 * @param parent parent component 227 228 * @param module the module 228 229 * @param moduleClassLoader the module class loader … … 262 263 263 264 /** 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 267 268 * @param modules the list of modules 268 269 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. … … 356 357 /** 357 358 * 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 361 362 * @return the set of modules to load (as set of module names) 362 363 */ … … 417 418 * @param modules the collection of modules to update. Must not be null. 418 419 * @param monitor the progress monitor. Defaults to {@link NullProgressMonitor#INSTANCE} if null. 420 * @return list of modules 419 421 * @throws IllegalArgumentException thrown if modules is null 420 422 */ … … 499 501 * Ask the user for confirmation that a module shall be disabled. 500 502 * 503 * @param parent parent component 501 504 * @param reason the reason for disabling the module 502 505 * @param name the module name -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/modules/ModuleInformation.java
r34151 r34153 223 223 * @param klass the module class 224 224 * @return the instantiated and initialized module 225 * @throws ModuleException if the module cannot be loaded or initialized 225 226 */ 226 227 public Module load(Class<? extends Module> klass) throws ModuleException { … … 237 238 * @param classLoader the class loader to use 238 239 * @return the loaded class 240 * @throws ModuleException if the class cannot be found 239 241 */ 240 242 @SuppressWarnings("unchecked") … … 326 328 /** 327 329 * Replies the name of the module 330 * @return the name of the module 328 331 */ 329 332 public String getName() {
Note:
See TracChangeset
for help on using the changeset viewer.