Changeset 277 in josm for src/org/openstreetmap/josm/plugins/PluginInformation.java
- Timestamp:
- 2007-07-06T00:38:51+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/plugins/PluginInformation.java
r267 r277 32 32 public final String author; 33 33 public final int stage; 34 public final String version; 34 35 public final List<URL> libraries = new ArrayList<URL>(); 35 36 … … 64 65 String stageStr = attr.getValue("Plugin-Stage"); 65 66 stage = stageStr == null ? 50 : Integer.parseInt(stageStr); 67 version = attr.getValue("Plugin-Version"); 66 68 author = attr.getValue("Author"); 67 69 if (file != null) … … 118 120 } 119 121 120 p rivateString getURLString(String fileName) {122 public static String getURLString(String fileName) { 121 123 if (System.getProperty("os.name").startsWith("Windows")) 122 124 return "file:/"+fileName;
Note:
See TracChangeset
for help on using the changeset viewer.