Package java.net
Interface ContentHandlerFactory
-
public interface ContentHandlerFactoryDefines a factory which is responsible for creating aContentHandler.- See Also:
ContentHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContentHandlercreateContentHandler(String contentType)Creates a content handler to handlecontentType.
-
-
-
Method Detail
-
createContentHandler
ContentHandler createContentHandler(String contentType)
Creates a content handler to handlecontentType.- Parameters:
contentType- specifies the content type which is handled by the returnedContentHandler.- Returns:
- content handler object for a specific content type.
-
-