Changeset 34100 in osm for applications/editors/josm/plugins/o5m/src/org
- Timestamp:
- 2018-03-25T03:49:09+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/o5m/src/org/openstreetmap/josm/plugins/o5m/io/O5mReader.java
r34098 r34100 14 14 import java.util.Map; 15 15 16 import org.openstreetmap.josm.Main;17 16 import org.openstreetmap.josm.data.Bounds; 18 17 import org.openstreetmap.josm.data.DataSource; … … 210 209 /** 211 210 * read the bounding box data set 212 * @throws IOException in case of I/O error213 211 */ 214 212 private void readBBox() { … … 473 471 * read object type ("0".."2") concatenated with role (single string) 474 472 * @return 0..3 for type (3 means unknown) 473 * @throws IOException in case of I/O error 475 474 */ 476 475 private int readRelRef() throws IOException { … … 566 565 * read a varying length signed number (see o5m definition) 567 566 * @return the number 568 * @throws IOException in case of I/O error569 567 */ 570 568 private int readSignedNum32() { … … 597 595 * read a varying length signed number (see o5m definition) 598 596 * @return the number 599 * @throws IOException in case of I/O error600 597 */ 601 598 private long readSignedNum64() { … … 653 650 * read a varying length unsigned number (see o5m definition) 654 651 * @return a long 655 * @throws IOException in case of I/O error656 652 */ 657 653 private long readUnsignedNum64() { … … 678 674 * is similar to the 64 bit version. 679 675 * @return an int 680 * @throws IOException in case of I/O error681 676 */ 682 677 private int readUnsignedNum32() { … … 705 700 * 706 701 * @param source the source input stream. Must not be null. 707 * @param progressMonitor the progress monitor. If null, {@ seeNullProgressMonitor#INSTANCE} is assumed702 * @param progressMonitor the progress monitor. If null, {@link NullProgressMonitor#INSTANCE} is assumed 708 703 * 709 704 * @return the dataset with the parsed data
Note:
See TracChangeset
for help on using the changeset viewer.