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

Last change on this file since 11266 was 8510, checked in by Don-vip, 9 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 442 bytes
Line 
1// License: GPL. For details, see LICENSE file.
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(TestError error);
12
13 void visit(OsmPrimitive p);
14
15 void visit(WaySegment ws);
16
17 void visit(List<Node> nodes);
18}
Note: See TracBrowser for help on using the repository browser.