source: josm/trunk/src/org/openstreetmap/josm/data/osm/PrimitiveId.java@ 2594

Last change on this file since 2594 was 2399, checked in by jttt, 14 years ago

Added map of primitives to dataset to make search by id faster
check if primitive already exist in addPrimitive and removePrimitive
use PrimitiveId instead of id + primitive type

  • Property svn:mime-type set to text/plain
File size: 182 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.osm;
3
4public interface PrimitiveId {
5
6 long getUniqueId();
7
8 OsmPrimitiveType getType();
9
10}
Note: See TracBrowser for help on using the repository browser.