Changeset 13332 in osm for applications/editors/josm/plugins/validator/src/org
- Timestamp:
- 2009-01-23T22:36:04+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/PreferenceEditor.java
r12991 r13332 16 16 import org.openstreetmap.josm.gui.preferences.PreferenceSetting; 17 17 import org.openstreetmap.josm.plugins.validator.util.Util; 18 import org.openstreetmap.josm.plugins.validator.util.Util.Version;19 18 import org.openstreetmap.josm.tools.GBC; 20 19 … … 89 88 testPane.setBorder(null); 90 89 91 Version ver = Util.getVersion();92 90 String description = tr("An OSM data validator that checks for common errors made by users and editor programs."); 93 if( ver != null )94 description += "<br>" + tr("Version {0} - Last change at {1}", ver.revision, ver.time);95 91 JPanel tab = gui.createPreferenceTab("validator", tr("Data validator"), description); 96 92 tab.add(testPane, GBC.eol().fill(GBC.BOTH)); -
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/util/Util.java
r12778 r13332 30 30 { 31 31 return Main.pref.getPreferencesDir() + "plugins/validator/"; 32 }33 34 /**35 * Returns the version36 * @return The version of the application37 */38 public static Version getVersion()39 {40 PluginInformation info = PluginInformation.getLoaded("validator");41 if( info == null )42 return null;43 44 return new Version(info.version, info.attr.get("Plugin-Date"));45 }46 47 /**48 * Utility class for displaying versions49 *50 * @author frsantos51 */52 public static class Version53 {54 /** The revision */55 public String revision;56 /** The build time */57 public String time;58 59 /**60 * Constructor61 * @param revision62 * @param time63 */64 public Version(String revision, String time)65 {66 this.revision = revision;67 this.time = time;68 }69 32 } 70 33
Note:
See TracChangeset
for help on using the changeset viewer.