Index: /applications/editors/josm/plugins/graphview/build.xml
===================================================================
--- /applications/editors/josm/plugins/graphview/build.xml	(revision 17370)
+++ /applications/editors/josm/plugins/graphview/build.xml	(revision 17371)
@@ -57,5 +57,5 @@
                 <attribute name="Plugin-Description" value="Visualizes routing information as a routing graph."/>
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Graphview"/>
-                <attribute name="Plugin-Mainversion" value="1986"/>
+                <attribute name="Plugin-Mainversion" value="2012"/>
                 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
             </manifest>
Index: /applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/data/JOSMDataSource.java
===================================================================
--- /applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/data/JOSMDataSource.java	(revision 17370)
+++ /applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/data/JOSMDataSource.java	(revision 17371)
@@ -46,5 +46,5 @@
 
 	public Iterable<Node> getNodes(Way way) {
-		return new FilteredOsmPrimitiveIterable<Node>(way.nodes);
+		return new FilteredOsmPrimitiveIterable<Node>(way.getNodes());
 	}
 
@@ -74,8 +74,8 @@
 
 	private TagGroup getTags(OsmPrimitive primitive) {
-		if (primitive.keys == null) {
+		if (primitive.getKeys() == null) {
 			return EMPTY_TAG_GROUP;
 		} else {
-			return new MapBasedTagGroup(primitive.keys);
+			return new MapBasedTagGroup(primitive.getKeys());
 		}
 	}
