|
Last change
on this file since 3083 was 3083, checked in by bastiK, 16 years ago |
|
added svn:eol-style=native to source files
|
-
Property svn:eol-style
set to
native
-
Property svn:mime-type
set to
text/plain
|
|
File size:
344 bytes
|
| Line | |
|---|
| 1 | // License: GPL. For details, see LICENSE file.
|
|---|
| 2 | package org.openstreetmap.josm.data.osm;
|
|---|
| 3 |
|
|---|
| 4 | public 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.