source: josm/trunk/src/org/openstreetmap/josm/data/osm/visitor/Visitor.java@ 1169

Last change on this file since 1169 was 1169, checked in by stoecker, 15 years ago

removed usage of tab stops

  • Property svn:eol-style set to native
File size: 490 bytes
Line 
1// License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.data.osm.visitor;
3
4import org.openstreetmap.josm.data.osm.Relation;
5import org.openstreetmap.josm.data.osm.Node;
6import org.openstreetmap.josm.data.osm.Way;
7
8/**
9 * Implementation of the visitor scheme. Every OsmPrimitive can be visited by
10 * several different visitors.
11 *
12 * @author imi
13 */
14public interface Visitor {
15 void visit(Node n);
16 void visit(Way w);
17 void visit(Relation e);
18}
Note: See TracBrowser for help on using the repository browser.