Changeset 7588 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2014-09-29T23:52:43+02:00 (10 years ago)
Author:
Don-vip
Message:

update presets links + javadoc

File:
1 edited

Legend:

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

    r7582 r7588  
    3838 *
    3939 * @author imi
     40 * @since 153
    4041 */
    4142public class PluginInformation {
     
    5152    /** The plugin class name. */
    5253    public String className = null;
     54    /** Determines if the plugin is an old version loaded for incompatibility with latest JOSM (from plugin list) */
    5355    public boolean oldmode = false;
    5456    /** The list of required plugins, separated by ';' (from plugin list). */
     
    7274    /** The plugin download link. */
    7375    public String downloadlink = null;
     76    /** The plugin icon path inside jar. */
    7477    public String iconPath;
    7578    /** The plugin icon. */
    7679    public ImageIcon icon;
     80    /** The libraries referenced in Class-Path manifest attribute. */
    7781    public List<URL> libraries = new LinkedList<>();
     82    /** All manifest attributes. */
    7883    public final Map<String, String> attr = new TreeMap<>();
    7984
Note: See TracChangeset for help on using the changeset viewer.