summaryrefslogtreecommitdiff
path: root/java/net/ContentHandlerFactory.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2004-04-08 17:25:01 +0000
committerMichael Koch <konqueror@gmx.de>2004-04-08 17:25:01 +0000
commitc989d198d05e0949cc190568b042683b31b2cce5 (patch)
treeecab9f39c3bfc03e8fb613145695e78c9aa0d719 /java/net/ContentHandlerFactory.java
parent7f4db3a951257156a9fb7ca88d6e8218594a09c8 (diff)
downloadclasspath-c989d198d05e0949cc190568b042683b31b2cce5.tar.gz
2004-04-08 Michael Koch <konqueror@gmx.de>
* java/net/ContentHandler.java, java/net/ContentHandlerFactory.java, java/net/Inet4Address.java, java/net/Inet6Address.java, java/net/JarURLConnection.java, java/net/MimeTypeMapper.java, java/net/URI.java, java/net/URL.java, java/net/URLClassLoader.java, java/net/URLConnection.java, java/net/URLStreamHandler.java: Reworked javadocs and coding style.
Diffstat (limited to 'java/net/ContentHandlerFactory.java')
-rw-r--r--java/net/ContentHandlerFactory.java11
1 files changed, 4 insertions, 7 deletions
diff --git a/java/net/ContentHandlerFactory.java b/java/net/ContentHandlerFactory.java
index 7310f5696..cdfbca285 100644
--- a/java/net/ContentHandlerFactory.java
+++ b/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
-