Changeset 16630 in osm for applications/editors/josm/plugins/graphview/src
- Timestamp:
- 2009-07-21T22:12:17+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/data/JOSMDataSource.java
r16520 r16630 50 50 51 51 public Iterable<Node> getNodes() { 52 return new FilteredOsmPrimitiveIterable<Node>(Main. ds.nodes);52 return new FilteredOsmPrimitiveIterable<Node>(Main.main.getCurrentDataSet().nodes); 53 53 } 54 54 55 55 public Iterable<Relation> getRelations() { 56 return new FilteredRelationIterable(Main. ds.relations);56 return new FilteredRelationIterable(Main.main.getCurrentDataSet().relations); 57 57 } 58 58 59 59 public Iterable<Way> getWays() { 60 return new FilteredOsmPrimitiveIterable<Way>(Main. ds.ways);60 return new FilteredOsmPrimitiveIterable<Way>(Main.main.getCurrentDataSet().ways); 61 61 } 62 62
Note:
See TracChangeset
for help on using the changeset viewer.