source: josm/trunk/src/org/openstreetmap/josm/data/osm/IWay.java@ 4153

Last change on this file since 4153 was 4100, checked in by bastiK, 13 years ago

use IPrimitive to make upload code work for both OsmPrimitive and PrimitiveData

  • Property svn:eol-style set to native
File size: 215 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4public interface IWay extends IPrimitive {
5
6 int getNodesCount();
7 long getNodeId(int idx);
8 boolean isClosed();
9
10}
Note: See TracBrowser for help on using the repository browser.