Changeset 18697 in josm for trunk/src


Ignore:
Timestamp:
2023-03-20T22:53:26+01:00 (20 months ago)
Author:
taylor.smock
Message:

See r18695: fix @since xxx

Location:
trunk/src/org/openstreetmap/josm
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/vectortile/mapbox/CommandInteger.java

    r18695 r18697  
    5353     * Add a parameter
    5454     * @param parameterInteger The parameter to add (converted to {@code short}).
    55      * @since xxx
     55     * @since 18695
    5656     */
    5757    public void addParameter(long parameterInteger) {
  • trunk/src/org/openstreetmap/josm/data/osm/pbf/Blob.java

    r18695 r18697  
    1616/**
    1717 * A "Blob" of data from an OSM PBF file. It, in turn, contains additional data in PBF format, which may be compressed.
    18  * @since xxx
     18 * @since 18695
    1919 */
    2020public final class Blob {
  • trunk/src/org/openstreetmap/josm/data/osm/pbf/BlobHeader.java

    r18695 r18697  
    77/**
    88 * A "BlobHeader" which contains metadata for a {@link Blob}.
    9  * @since xxx
     9 * @since 18695
    1010 */
    1111public final class BlobHeader {
     
    1414    private final int dataSize;
    1515
     16    /**
     17     * Create a new {@link BlobHeader}
     18     * @param type The type of data in the blob
     19     * @param indexData The metadata for the blob
     20     * @param dataSize The size of the blob
     21     */
    1622    public BlobHeader(@Nonnull String type, @Nullable byte[] indexData, int dataSize) {
    1723        this.type = type;
     
    2026    }
    2127
     28    /**
     29     * @return The blob type
     30     */
    2231    public String type() {
    2332        return this.type;
    2433    }
    2534
     35    /**
     36     * @return The blob metadata
     37     */
    2638    public byte[] indexData() {
    2739        return this.indexData;
    2840    }
    2941
     42    /**
     43     * @return The blob size
     44     */
    3045    public int dataSize() {
    3146        return this.dataSize;
  • trunk/src/org/openstreetmap/josm/data/osm/pbf/HeaderBlock.java

    r18695 r18697  
    1010 * The header block contains data on required features, optional features, the bbox of the data, the source, the osmosis replication timestamp,
    1111 * the osmosis replication sequence number, and the osmosis replication base url
    12  * @since xxx
     12 * @since 18695
    1313 */
    1414public final class HeaderBlock {
  • trunk/src/org/openstreetmap/josm/data/osm/pbf/Info.java

    r18695 r18697  
    66/**
    77 * Optional metadata for primitives
    8  * @since xxx
     8 * @since 18695
    99 */
    1010public final class Info {
     
    1616    private final boolean visible;
    1717
     18    /**
     19     * Create a new {@link Info} object
     20     * @param version The OSM version
     21     * @param timestamp The OSM timestamp
     22     * @param changeset The OSM changeset
     23     * @param uid The user ID
     24     * @param userSid The string id for the user name
     25     * @param visible {@code false} if the element was deleted for this version
     26     */
    1827    public Info(int version, @Nullable Long timestamp, @Nullable Long changeset, @Nullable Integer uid, @Nullable Integer userSid,
    1928                boolean visible) {
     
    2635    }
    2736
     37    /**
     38     * @return The version
     39     */
    2840    public int version() {
    2941        return this.version;
    3042    }
    3143
     44    /**
     45     * @return The timestamp
     46     */
    3247    public Long timestamp() {
    3348        return this.timestamp;
    3449    }
    3550
     51    /**
     52     * @return The changeset
     53     */
    3654    public Long changeset() {
    3755        return this.changeset;
    3856    }
    3957
     58    /**
     59     * @return The user id
     60     */
    4061    public Integer uid() {
    4162        return this.uid;
    4263    }
    4364
     65    /**
     66     * @return The user string id (in PBF strings)
     67     */
    4468    public Integer userSid() {
    4569        return this.userSid;
    4670    }
    4771
     72    /**
     73     * @return {@code false} if the object was deleted
     74     */
    4875    public boolean isVisible() {
    4976        return this.visible;
  • trunk/src/org/openstreetmap/josm/data/osm/pbf/OsmPbfFile.java

    r18695 r18697  
    88/**
    99 * A class used to determine whether or not a file may be an OSM PBF file
    10  * @since xxx
     10 * @since 18695
    1111 */
    1212public final class OsmPbfFile {
  • trunk/src/org/openstreetmap/josm/gui/io/importexport/OsmPbfImporter.java

    r18695 r18697  
    1515/**
    1616 * File importer that reads *.osm.pbf data files.
    17  * @since xxx
     17 * @since 18695
    1818 */
    1919public class OsmPbfImporter extends OsmImporter {
  • trunk/src/org/openstreetmap/josm/io/AbstractReader.java

    r18695 r18697  
    276276    /**
    277277     * An interface for reading binary data
    278      * @since xxx
     278     * @since 18695
    279279     */
    280280    @FunctionalInterface
  • trunk/src/org/openstreetmap/josm/io/OsmPbfReader.java

    r18695 r18697  
    4747/**
    4848 * Read OSM data from an OSM PBF file
    49  * @since xxx
     49 * @since 18695
    5050 */
    5151public final class OsmPbfReader extends AbstractReader {
Note: See TracChangeset for help on using the changeset viewer.