Ignore:
Timestamp:
2015-05-22T21:15:05+02:00 (10 years ago)
Author:
Don-vip
Message:

code style/cleanup - Uncommented Empty Constructor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java

    r8338 r8415  
    2727 * A TagCollection can be created:
    2828 * <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>
    3337 * </ul>
    3438 *
     
    3640 *
    3741 * 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)}.
    4044 *
    41  *
     45 * @since 2008
    4246 */
    4347public class TagCollection implements Iterable<Tag> {
     
    145149
    146150    /**
    147      * Creates an empty tag collection
     151     * Creates an empty tag collection.
    148152     */
    149153    public TagCollection() {
     154        // contents can be set later with add()
    150155    }
    151156
Note: See TracChangeset for help on using the changeset viewer.