Ignore:
Timestamp:
2018-03-25T03:49:09+02:00 (6 years ago)
Author:
donvip
Message:

fix javadoc warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/o5m/src/org/openstreetmap/josm/plugins/o5m/io/O5mReader.java

    r34098 r34100  
    1414import java.util.Map;
    1515
    16 import org.openstreetmap.josm.Main;
    1716import org.openstreetmap.josm.data.Bounds;
    1817import org.openstreetmap.josm.data.DataSource;
     
    210209        /**
    211210         * read the bounding box data set
    212          * @throws IOException in case of I/O error
    213211         */
    214212        private void readBBox() {
     
    473471         * read object type ("0".."2") concatenated with role (single string)
    474472         * @return 0..3 for type (3 means unknown)
     473         * @throws IOException in case of I/O error
    475474         */
    476475        private int readRelRef() throws IOException {
     
    566565         * read a varying length signed number (see o5m definition)
    567566         * @return the number
    568          * @throws IOException in case of I/O error
    569567         */
    570568        private int readSignedNum32() {
     
    597595         * read a varying length signed number (see o5m definition)
    598596         * @return the number
    599          * @throws IOException in case of I/O error
    600597         */
    601598        private long readSignedNum64() {
     
    653650         * read a varying length unsigned number (see o5m definition)
    654651         * @return a long
    655          * @throws IOException in case of I/O error
    656652         */
    657653        private long readUnsignedNum64() {
     
    678674         * is similar to the 64 bit version.
    679675         * @return an int
    680          * @throws IOException in case of I/O error
    681676         */
    682677        private int readUnsignedNum32() {
     
    705700     *
    706701     * @param source the source input stream. Must not be null.
    707      * @param progressMonitor  the progress monitor. If null, {@see NullProgressMonitor#INSTANCE} is assumed
     702     * @param progressMonitor  the progress monitor. If null, {@link NullProgressMonitor#INSTANCE} is assumed
    708703     *
    709704     * @return the dataset with the parsed data
Note: See TracChangeset for help on using the changeset viewer.