Changeset 3573 in osm for applications/editors/josm/plugins/ywms
- Timestamp:
- 2007-07-12T21:14:26+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ywms/src/org/openstreetmap/josm/plugins/ywms/RequestProcessor.java
r2264 r3573 20 20 public class RequestProcessor extends Thread 21 21 { 22 /** The socket this processor listens */ 22 23 private Socket request; 23 24 … … 26 27 * 27 28 * @param request The WMS request 28 * @param pluginDir The directory of the plugin29 29 */ 30 30 public RequestProcessor(Socket request) … … 119 119 /** 120 120 * Sends a 500 error: server error 121 * @param out The writer where the error is written 122 * @throws IOException If the error can not be written 121 123 */ 122 124 private void sendError(Writer out) throws IOException … … 134 136 /** 135 137 * Sends a 501 error: not implemented 138 * @param out The writer where the error is written 139 * @throws IOException If the error can not be written 136 140 */ 137 141 private void sendNotImplemented(Writer out) throws IOException
Note:
See TracChangeset
for help on using the changeset viewer.