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

Revision 4100, 215 bytes checked in by bastiK, 12 months ago (diff)

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

  • Property svn:eol-style set to native
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.