Changeset 7404 in osm for applications/editors/josm/plugins/validator/src/org
- Timestamp:
- 2008-04-18T00:36:34+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/Severity.java
r3037 r7404 3 3 import java.awt.Color; 4 4 5 import org.openstreetmap.josm.data. osm.visitor.SimplePaintVisitor;5 import org.openstreetmap.josm.data.Preferences; 6 6 7 7 /** The error severity */ 8 8 public enum Severity { 9 9 /** Error messages */ 10 ERROR("Errors", "error.gif", SimplePaintVisitor.getPreferencesColor("validation error", Color.RED)),10 ERROR("Errors", "error.gif", Preferences.getPreferencesColor("validation error", Color.RED)), 11 11 /** Warning messages */ 12 WARNING("Warnings", "warning.gif", SimplePaintVisitor.getPreferencesColor("validation warning", Color.YELLOW)),12 WARNING("Warnings", "warning.gif", Preferences.getPreferencesColor("validation warning", Color.YELLOW)), 13 13 /** Other messages */ 14 OTHER("Other", "other.gif", SimplePaintVisitor.getPreferencesColor("validation other", Color.CYAN));14 OTHER("Other", "other.gif", Preferences.getPreferencesColor("validation other", Color.CYAN)); 15 15 16 16 /** Description of the severity code */
Note:
See TracChangeset
for help on using the changeset viewer.