Changeset 655 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2008-06-15T12:28:42+02:00 (17 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/io
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/MyHttpHandler.java
r627 r655 23 23 } 24 24 public MyHttpHandler(String proxy, int port) { 25 proxy = proxy; 25 this.proxy = proxy; 26 26 proxyPort = port; 27 27 } -
trunk/src/org/openstreetmap/josm/io/OsmServerObjectReader.java
r653 r655 18 18 19 19 /** 20 * Method to download single Objects from OSM server. ways, relations, nodes21 * @param id 22 * @param type 20 * Method to download single objects from OSM server. ways, relations, nodes 21 * @param id Object ID 22 * @param type way node relation 23 23 * @param full download with or without child objects 24 * @return 24 * @return the data requested 25 25 * @throws SAXException 26 26 * @throws IOException 27 27 */ 28 public DataSet parseOsm(long id,String type, boolean full 28 public DataSet parseOsm(long id, String type, boolean full) throws SAXException, IOException { 29 29 try { 30 30 -
trunk/src/org/openstreetmap/josm/io/OsmServerReader.java
r627 r655 26 26 * Open a connection to the given url and return a reader on the input stream 27 27 * from that connection. In case of user cancel, return <code>null</code>. 28 * @param url The exact url to connect to. 28 * @param urlStr The exact url to connect to. 29 * @param pleaseWaitDlg 29 30 * @return An reader reading the input stream (servers answer) or <code>null</code>. 30 31 */
Note:
See TracChangeset
for help on using the changeset viewer.