Changeset 18415 in osm for applications/editors/josm/plugins/graphview
- Timestamp:
- 2009-11-02T08:53:38+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/graphview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/build.xml
r17538 r18415 57 57 <attribute name="Plugin-Description" value="Visualizes routing information as a routing graph."/> 58 58 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Graphview"/> 59 <attribute name="Plugin-Mainversion" value="2 082"/>59 <attribute name="Plugin-Mainversion" value="2381"/> 60 60 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 61 61 </manifest> -
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.