Ignore:
Timestamp:
2021-08-26T04:12:30+02:00 (3 years ago)
Author:
Don-vip
Message:

fix #4282 - Support for OziExplorer Waypoint files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/IGpxReader.java

    r18071 r18179  
    88
    99/**
    10  * Abstraction of {@code GpxReader}, {@code NmeaReader} and {@code RtkLibPosReader}
     10 * Abstraction of {@code GpxReader}, {@code NmeaReader}, {@code OziWptReader} and {@code RtkLibPosReader}
    1111 * @since 14010
    1212 */
     
    2222     * @throws SAXException if any SAX parsing error occurs
    2323     * @throws IOException if any I/O error occurs
     24     * @throws UnsupportedOperationException if the format is not supported
    2425     */
    2526    boolean parse(boolean tryToFinish) throws SAXException, IOException;
     
    3031     */
    3132    GpxData getGpxData();
     33
     34    /**
     35     * Returns the number of coordinates that have been successfuly read.
     36     * @return the number of coordinates that have been successfuly read
     37     * @since 18179
     38     */
     39    default int getNumberOfCoordinates() {
     40        throw new UnsupportedOperationException();
     41    }
    3242}
Note: See TracChangeset for help on using the changeset viewer.