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

Revision 1, 334 bytes (checked in by imi, 5 years ago)

wiki 19:37, 27. Sep 2005

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 browser.