java.net.ContentHandlerFactory (JDK 1.0)
This interface defines a method that creates and returns an appropriate ContentHandler object for a specified MIME type. A system-wide ContentHandlerFactory interface may be specified by using the URLConnection.setContentHandlerFactory() method.
Normal applications never need to use or implement this interface.
public abstract interfaceContentHandlerFactory{ //Public Instance Methodspublic abstract ContentHandlercreateContentHandler(Stringmimetype); }
Passed To:
URLConnection.setContentHandlerFactory()