source: josm/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java@ 1

Last change on this file since 1 was 1, checked in by imi, 21 years ago

wiki 19:37, 27. Sep 2005

File size: 334 bytes
Line 
1package org.openstreetmap.josm.data.osm;
2
3import 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 */
12public 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.