diff options
Diffstat (limited to 'luni/src/main/java/java/net/ContentHandler.java')
| -rw-r--r-- | luni/src/main/java/java/net/ContentHandler.java | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/luni/src/main/java/java/net/ContentHandler.java b/luni/src/main/java/java/net/ContentHandler.java index 05c6acf..8e0bbb7 100644 --- a/luni/src/main/java/java/net/ContentHandler.java +++ b/luni/src/main/java/java/net/ContentHandler.java @@ -23,28 +23,26 @@ import java.io.IOException; * This class converts the content of a certain format (i.e. a MIME type) into a * Java type object. It is created by {@code ContentHandlerFactory}. The data * values should be accessed via {@code URL} or {@code URLConnection}. - * + * * @see ContentHandlerFactory * @see URL#getContent() * @see URLConnection#getContent() - * @since Android 1.0 */ public abstract class ContentHandler { /** * Returns the object pointed by the specified URL connection {@code uConn}. - * + * * @param uConn * URL connection that points to the desired object. * @return object referred by {@code uConn}. * @throws IOException * if an IO error occurs during the retrieval of the object - * @since Android 1.0 */ public abstract Object getContent(URLConnection uConn) throws IOException; /** * Returns the object pointed by the specified URL connection {@code uConn}. - * + * * @param uConn * URL connection that points to the desired object. * @param types @@ -53,7 +51,6 @@ public abstract class ContentHandler { * content doesn't match one of the specified content types. * @throws IOException * if an error occurred while obtaining the content. - * @since Android 1.0 */ // Class arg not generified in the spec. @SuppressWarnings("unchecked") |
