- Timestamp:
- 2023-03-20T22:53:26+01:00 (20 months ago)
- 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 53 53 * Add a parameter 54 54 * @param parameterInteger The parameter to add (converted to {@code short}). 55 * @since xxx55 * @since 18695 56 56 */ 57 57 public void addParameter(long parameterInteger) { -
trunk/src/org/openstreetmap/josm/data/osm/pbf/Blob.java
r18695 r18697 16 16 /** 17 17 * A "Blob" of data from an OSM PBF file. It, in turn, contains additional data in PBF format, which may be compressed. 18 * @since xxx18 * @since 18695 19 19 */ 20 20 public final class Blob { -
trunk/src/org/openstreetmap/josm/data/osm/pbf/BlobHeader.java
r18695 r18697 7 7 /** 8 8 * A "BlobHeader" which contains metadata for a {@link Blob}. 9 * @since xxx9 * @since 18695 10 10 */ 11 11 public final class BlobHeader { … … 14 14 private final int dataSize; 15 15 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 */ 16 22 public BlobHeader(@Nonnull String type, @Nullable byte[] indexData, int dataSize) { 17 23 this.type = type; … … 20 26 } 21 27 28 /** 29 * @return The blob type 30 */ 22 31 public String type() { 23 32 return this.type; 24 33 } 25 34 35 /** 36 * @return The blob metadata 37 */ 26 38 public byte[] indexData() { 27 39 return this.indexData; 28 40 } 29 41 42 /** 43 * @return The blob size 44 */ 30 45 public int dataSize() { 31 46 return this.dataSize; -
trunk/src/org/openstreetmap/josm/data/osm/pbf/HeaderBlock.java
r18695 r18697 10 10 * The header block contains data on required features, optional features, the bbox of the data, the source, the osmosis replication timestamp, 11 11 * the osmosis replication sequence number, and the osmosis replication base url 12 * @since xxx12 * @since 18695 13 13 */ 14 14 public final class HeaderBlock { -
trunk/src/org/openstreetmap/josm/data/osm/pbf/Info.java
r18695 r18697 6 6 /** 7 7 * Optional metadata for primitives 8 * @since xxx8 * @since 18695 9 9 */ 10 10 public final class Info { … … 16 16 private final boolean visible; 17 17 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 */ 18 27 public Info(int version, @Nullable Long timestamp, @Nullable Long changeset, @Nullable Integer uid, @Nullable Integer userSid, 19 28 boolean visible) { … … 26 35 } 27 36 37 /** 38 * @return The version 39 */ 28 40 public int version() { 29 41 return this.version; 30 42 } 31 43 44 /** 45 * @return The timestamp 46 */ 32 47 public Long timestamp() { 33 48 return this.timestamp; 34 49 } 35 50 51 /** 52 * @return The changeset 53 */ 36 54 public Long changeset() { 37 55 return this.changeset; 38 56 } 39 57 58 /** 59 * @return The user id 60 */ 40 61 public Integer uid() { 41 62 return this.uid; 42 63 } 43 64 65 /** 66 * @return The user string id (in PBF strings) 67 */ 44 68 public Integer userSid() { 45 69 return this.userSid; 46 70 } 47 71 72 /** 73 * @return {@code false} if the object was deleted 74 */ 48 75 public boolean isVisible() { 49 76 return this.visible; -
trunk/src/org/openstreetmap/josm/data/osm/pbf/OsmPbfFile.java
r18695 r18697 8 8 /** 9 9 * A class used to determine whether or not a file may be an OSM PBF file 10 * @since xxx10 * @since 18695 11 11 */ 12 12 public final class OsmPbfFile { -
trunk/src/org/openstreetmap/josm/gui/io/importexport/OsmPbfImporter.java
r18695 r18697 15 15 /** 16 16 * File importer that reads *.osm.pbf data files. 17 * @since xxx17 * @since 18695 18 18 */ 19 19 public class OsmPbfImporter extends OsmImporter { -
trunk/src/org/openstreetmap/josm/io/AbstractReader.java
r18695 r18697 276 276 /** 277 277 * An interface for reading binary data 278 * @since xxx278 * @since 18695 279 279 */ 280 280 @FunctionalInterface -
trunk/src/org/openstreetmap/josm/io/OsmPbfReader.java
r18695 r18697 47 47 /** 48 48 * Read OSM data from an OSM PBF file 49 * @since xxx49 * @since 18695 50 50 */ 51 51 public final class OsmPbfReader extends AbstractReader {
Note:
See TracChangeset
for help on using the changeset viewer.