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

Last change on this file since 5339 was 5170, checked in by Don-vip, 12 years ago

cleanup svn:mime-type properties preventing Java sources from being viewed as such on Trac

  • Property svn:eol-style set to native
File size: 344 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 OsmPrimitiveType getType();
8
9 /**
10 * Replies true if this id represents a new primitive.
11 *
12 * @return true if this id represents a new primitive.
13 */
14 boolean isNew();
15
16}
Note: See TracBrowser for help on using the repository browser.