home *** CD-ROM | disk | FTP | other *** search
- package opera;
-
- import java.io.IOException;
- import java.net.URL;
- import java.net.URLConnection;
- import java.net.URLStreamHandler;
-
- public class FtpStreamHandler extends URLStreamHandler {
- public URLConnection openConnection(URL var1) throws IOException {
- return new FtpURLConnection(var1);
- }
- }
-