diff options
Diffstat (limited to 'libjava/java/net/ContentHandlerFactory.java')
-rw-r--r-- | libjava/java/net/ContentHandlerFactory.java | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/libjava/java/net/ContentHandlerFactory.java b/libjava/java/net/ContentHandlerFactory.java index 7310f56..cdfbca2 100644 --- a/libjava/java/net/ContentHandlerFactory.java +++ b/libjava/java/net/ContentHandlerFactory.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -35,18 +35,17 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ - package java.net; + /** * Written using on-line Java Platform 1.2 API Specification, as well * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998). * Status: Believed complete and correct. */ - /** - * This interface maps MIME types to <code>ContentHandler</code> objects. - * It consists of one method that, when passed a MIME type, returns a + * This interface maps MIME types to <code>ContentHandler</code> objects. + * It consists of one method that, when passed a MIME type, returns a * handler for that type. * * @author Aaron M. Renn (arenn@urbanophile.com) @@ -63,6 +62,4 @@ public interface ContentHandlerFactory * @return The <code>ContentHandler</code> for the passed in MIME type */ ContentHandler createContentHandler(String mimeType); - } // interface ContentHandlerFactory - |