source: josm/trunk/src/org/openstreetmap/josm/data/validation/ValidatorVisitor.java@ 3715

Last change on this file since 3715 was 3669, checked in by bastiK, 13 years ago

add validator plugin to josm core. Original author: Francisco R. Santos (frsantos); major contributions by bilbo, daeron, delta_foxtrot, imi, jttt, jrreid, gabriel, guggis, pieren, rrankin, skela, stoecker, stotz and others

  • Property svn:eol-style set to native
File size: 405 bytes
Line 
1// License: GPL. See LICENSE file for details.
2package org.openstreetmap.josm.data.validation;
3
4import java.util.List;
5
6import org.openstreetmap.josm.data.osm.Node;
7import org.openstreetmap.josm.data.osm.OsmPrimitive;
8import org.openstreetmap.josm.data.osm.WaySegment;
9
10public interface ValidatorVisitor {
11 void visit(OsmPrimitive p);
12 void visit(WaySegment ws);
13 void visit(List<Node> nodes);
14}
Note: See TracBrowser for help on using the repository browser.