Ignore:
Timestamp:
2016-01-01T02:35:34+01:00 (9 years ago)
Author:
Don-vip
Message:

javadoc update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/Plugin.java

    r8928 r9231  
    101101     * Called in the download dialog to give the plugin a chance to modify the list
    102102     * of bounding box selectors.
     103     * @param list list of bounding box selectors
    103104     */
    104105    public void addDownloadSelection(List<DownloadSelection> list) {}
     
    106107    /**
    107108     * Copies the resource 'from' to the file in the plugin directory named 'to'.
     109     * @param from source file
     110     * @param to target file
    108111     * @throws FileNotFoundException if the file exists but is a directory rather than a regular file,
    109112     * does not exist but cannot be created, or cannot be opened for any other reason
     
    149152        final URL pluginJarUrl = Utils.fileToURL(pluginJar);
    150153        return AccessController.doPrivileged(new PrivilegedAction<ClassLoader>() {
     154              @Override
    151155              public ClassLoader run() {
    152156                  return new URLClassLoader(new URL[] {pluginJarUrl}, Main.class.getClassLoader());
Note: See TracChangeset for help on using the changeset viewer.