Changeset 8415 in josm for trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
- Timestamp:
- 2015-05-22T21:15:05+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
r8338 r8415 27 27 * A TagCollection can be created: 28 28 * <ul> 29 * <li>from the tags managed by a specific {@link org.openstreetmap.josm.data.osm.OsmPrimitive} with {@link #from(org.openstreetmap.josm.data.osm.Tagged)}</li> 30 * <li>from the union of all tags managed by a collection of {@link org.openstreetmap.josm.data.osm.OsmPrimitive}s with {@link #unionOfAllPrimitives(java.util.Collection)}</li> 31 * <li>from the union of all tags managed by a {@link org.openstreetmap.josm.data.osm.DataSet} with {@link #unionOfAllPrimitives(org.openstreetmap.josm.data.osm.DataSet)}</li> 32 * <li>from the intersection of all tags managed by a collection of primitives with {@link #commonToAllPrimitives(java.util.Collection)}</li> 29 * <li>from the tags managed by a specific {@link org.openstreetmap.josm.data.osm.OsmPrimitive} 30 * with {@link #from(org.openstreetmap.josm.data.osm.Tagged)}</li> 31 * <li>from the union of all tags managed by a collection of {@link org.openstreetmap.josm.data.osm.OsmPrimitive}s 32 * with {@link #unionOfAllPrimitives(java.util.Collection)}</li> 33 * <li>from the union of all tags managed by a {@link org.openstreetmap.josm.data.osm.DataSet} 34 * with {@link #unionOfAllPrimitives(org.openstreetmap.josm.data.osm.DataSet)}</li> 35 * <li>from the intersection of all tags managed by a collection of primitives 36 * with {@link #commonToAllPrimitives(java.util.Collection)}</li> 33 37 * </ul> 34 38 * … … 36 40 * 37 41 * Basic set operations allow to create the union, the intersection and the difference 38 * of tag collections, see {@link #union(org.openstreetmap.josm.data.osm.TagCollection)}, {@link #intersect(org.openstreetmap.josm.data.osm.TagCollection)},39 * and {@link #minus(org.openstreetmap.josm.data.osm.TagCollection)}. 42 * of tag collections, see {@link #union(org.openstreetmap.josm.data.osm.TagCollection)}, 43 * {@link #intersect(org.openstreetmap.josm.data.osm.TagCollection)}, and {@link #minus(org.openstreetmap.josm.data.osm.TagCollection)}. 40 44 * 41 * 45 * @since 2008 42 46 */ 43 47 public class TagCollection implements Iterable<Tag> { … … 145 149 146 150 /** 147 * Creates an empty tag collection 151 * Creates an empty tag collection. 148 152 */ 149 153 public TagCollection() { 154 // contents can be set later with add() 150 155 } 151 156
Note:
See TracChangeset
for help on using the changeset viewer.