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

Last change on this file since 7501 was 4098, checked in by bastiK, 13 years ago

extract common functionality of OsmPrimitive & PrimitiveData to an interface

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