Changeset 207 in josm for src/org/openstreetmap/josm/plugins
- Timestamp:
- 2007-04-03T17:46:00+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/plugins/PluginInformation.java
r192 r207 40 40 public final boolean early; 41 41 public final String author; 42 public final int stage; 42 43 public final List<URL> libraries = new ArrayList<URL>(); 43 44 … … 57 58 description = attr.getValue("Plugin-Description"); 58 59 early = Boolean.parseBoolean(attr.getValue("Plugin-Early")); 60 String stageStr = attr.getValue("Plugin-Stage"); 61 stage = stageStr == null ? 50 : Integer.parseInt(stageStr); 59 62 author = attr.getValue("Author"); 60 63 libraries.add(new URL(getURLString(file.getAbsolutePath())));
Note:
See TracChangeset
for help on using the changeset viewer.