Changeset 16630 in osm
- Timestamp:
- 2009-07-21T22:12:17+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/graphview
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/.classpath
r16520 r16630 2 2 <classpath> 3 3 <classpathentry kind="src" path="src"/> 4 <classpathentry combineaccessrules="false" kind="src" path="/josm"/>5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK 5"/>4 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JDK 6"/> 5 <classpathentry combineaccessrules="false" kind="src" path="/JOSM"/> 6 6 <classpathentry kind="output" path="build"/> 7 7 </classpath> -
applications/editors/josm/plugins/graphview/.project
r16520 r16630 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <projectDescription> 3 <name> validator</name>3 <name>JOSM-graphview</name> 4 4 <comment></comment> 5 5 <projects> -
applications/editors/josm/plugins/graphview/build.xml
r16605 r16630 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="1 788"/>59 <attribute name="Plugin-Mainversion" value="1815"/> 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
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.