FileDocCategorySizeDatePackage
Handler.javaAPI DocExample241Sun Dec 12 10:55:46 GMT 2004com.macfaq.net.www.protocol.time

Handler.java

package com.macfaq.net.www.protocol.time;

import java.net.*;
import java.io.*;
public class Handler extends URLStreamHandler {

  protected URLConnection openConnection(URL u) throws IOException {
    return new TimeURLConnection(u);
  }
}