Changeset 8905 in osm for applications/editors/josm/plugins/validator/src
- Timestamp:
- 2008-07-10T10:55:52+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/OSMValidatorPlugin.java
r6557 r8905 38 38 /** The list of errors per layer*/ 39 39 Map<Layer, List<TestError>> layerErrors = new HashMap<Layer, List<TestError>>(); 40 41 /** 42 * All available tests 43 * TODO: is there any way to find out automagically all available tests? 44 45 46 { 47 DuplicateNode.class, 48 OverlappingWays.class, 49 UntaggedNode.class, 50 51 52 53 DuplicatedWayNodes.class, 54 55 40 41 /** 42 * All available tests 43 * TODO: is there any way to find out automagically all available tests? 44 */ 45 public static Class[] allAvailableTests = new Class[] 46 { 47 DuplicateNode.class, 48 OverlappingWays.class, 49 UntaggedNode.class, 50 UntaggedWay.class, 51 SelfIntersectingWay.class, 52 SpellCheck.class, 53 DuplicatedWayNodes.class, 54 CrossingWays.class, 55 SimilarNamedWays.class, 56 56 NodesWithSameName.class, 57 Coastlines.class, 58 WronglyOrderedWays.class, 59 }; 57 Coastlines.class, 58 WronglyOrderedWays.class, 59 UnclosedWays.class, 60 }; 60 61 61 62 /** … … 65 66 { 66 67 PreferenceEditor.importOldPreferences(); 67 68 } 69 70 68 initializeTests( getTests() ); 69 } 70 71 @Override 71 72 public PreferenceSetting getPreferenceSetting() 72 73 { 73 74 return new PreferenceEditor(this); 74 75 } 75 76 76 77 @Override 77 78 public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame)
Note:
See TracChangeset
for help on using the changeset viewer.