source: josm/trunk/src/org/openstreetmap/josm/data/osm/IRelation.java@ 8927

Last change on this file since 8927 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: 276 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4public interface IRelation extends IPrimitive {
5
6 int getMembersCount();
7
8 long getMemberId(int idx);
9
10 String getRole(int idx);
11
12 OsmPrimitiveType getMemberType(int idx);
13}
Note: See TracBrowser for help on using the repository browser.