|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Visitor
Implementation of the visitor scheme. Every @{link org.openstreetmap.josm.data.OsmPrimitive} can be visited by several different visitors.
Method Summary | |
---|---|
void |
visit(Changeset cs)
Visiting call for changesets. |
void |
visit(Node n)
Visiting call for points. |
void |
visit(Relation e)
Visiting call for relations. |
void |
visit(Way w)
Visiting call for lines. |
Method Detail |
---|
void visit(Node n)
n
- The node to inspect.void visit(Way w)
w
- The way to inspect.void visit(Relation e)
e
- The relation to inspect.void visit(Changeset cs)
cs
- The changeset to inspect.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |