Changeset 18415 in osm for applications/editors/josm/plugins/graphview/src/org
- Timestamp:
- 2009-11-02T08:53:38+01: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
r17538 r18415 50 50 51 51 public Iterable<Node> getNodes() { 52 return new FilteredOsmPrimitiveIterable<Node>(Main.main.getCurrentDataSet(). nodes);52 return new FilteredOsmPrimitiveIterable<Node>(Main.main.getCurrentDataSet().getNodes()); 53 53 } 54 54 55 55 public Iterable<Relation> getRelations() { 56 return new FilteredRelationIterable(Main.main.getCurrentDataSet(). relations);56 return new FilteredRelationIterable(Main.main.getCurrentDataSet().getRelations()); 57 57 } 58 58 59 59 public Iterable<Way> getWays() { 60 return new FilteredOsmPrimitiveIterable<Way>(Main.main.getCurrentDataSet(). ways);60 return new FilteredOsmPrimitiveIterable<Way>(Main.main.getCurrentDataSet().getWays()); 61 61 } 62 62
Note:
See TracChangeset
for help on using the changeset viewer.