Changeset 1946 in josm for trunk/src/org
- Timestamp:
- 2009-08-10T08:04:20+02:00 (15 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/data/osm
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Way.java
r1934 r1946 99 99 isMappaintArea = false; 100 100 mappaintDrawnAreaCode = 0; 101 }102 103 public void visitNodes(Visitor v) {104 if (incomplete) return;105 for (Node n : this.nodes) {106 v.visit(n);107 }108 101 } 109 102 -
trunk/src/org/openstreetmap/josm/data/osm/visitor/AllNodesVisitor.java
r1937 r1946 34 34 */ 35 35 public void visit(Way w) { 36 w.visitNodes(this); 36 if (w.incomplete) return; 37 for (Node n : w.getNodes()) 38 visit(n); 37 39 } 38 40 -
trunk/src/org/openstreetmap/josm/data/osm/visitor/BoundingXYVisitor.java
r1937 r1946 28 28 29 29 public void visit(Way w) { 30 w.visitNodes(this); 30 if (w.incomplete) return; 31 for (Node n : w.getNodes()) 32 visit(n); 31 33 } 32 34
Note:
See TracChangeset
for help on using the changeset viewer.