- Timestamp:
- 2014-09-29T23:52:43+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/plugins/PluginInformation.java
r7582 r7588 38 38 * 39 39 * @author imi 40 * @since 153 40 41 */ 41 42 public class PluginInformation { … … 51 52 /** The plugin class name. */ 52 53 public String className = null; 54 /** Determines if the plugin is an old version loaded for incompatibility with latest JOSM (from plugin list) */ 53 55 public boolean oldmode = false; 54 56 /** The list of required plugins, separated by ';' (from plugin list). */ … … 72 74 /** The plugin download link. */ 73 75 public String downloadlink = null; 76 /** The plugin icon path inside jar. */ 74 77 public String iconPath; 75 78 /** The plugin icon. */ 76 79 public ImageIcon icon; 80 /** The libraries referenced in Class-Path manifest attribute. */ 77 81 public List<URL> libraries = new LinkedList<>(); 82 /** All manifest attributes. */ 78 83 public final Map<String, String> attr = new TreeMap<>(); 79 84
Note:
See TracChangeset
for help on using the changeset viewer.