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

Last change on this file since 8855 was 8510, checked in by Don-vip, 9 years ago

checkstyle: enable relevant whitespace checks and fix them

  • Property svn:eol-style set to native
File size: 216 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
8 long getNodeId(int idx);
9
10 boolean isClosed();
11}
Note: See TracBrowser for help on using the repository browser.