source:
josm/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java@
1
| Last change on this file since 1 was 1, checked in by , 21 years ago | |
|---|---|
| File size: 334 bytes | |
| Line | |
|---|---|
| 1 | package org.openstreetmap.josm.data.osm; |
| 2 | |
| 3 | import java.util.Map; |
| 4 | |
| 5 | |
| 6 | /** |
| 7 | * An OSM primitive can be associated with a key/value pair. It can be created, deleted |
| 8 | * and updated within the OSM-Server. |
| 9 | * |
| 10 | * @author imi |
| 11 | */ |
| 12 | public class OsmPrimitive { |
| 13 | |
| 14 | /** |
| 15 | * The key/value list for this primitive. |
| 16 | */ |
| 17 | public Map<Key, String> keys; |
| 18 | } |
Note:
See TracBrowser
for help on using the repository browser.
