From f6d49f66ec0e0a59285d304720cc3bfa18f28141 Mon Sep 17 00:00:00 2001 From: Michael Koch Date: Tue, 20 Apr 2004 13:05:10 +0000 Subject: Authenticator.java, [...]: Fixed javadocs, coding style and argument names all over. 2004-04-20 Michael Koch * java/net/Authenticator.java, java/net/BindException.java, java/net/ConnectException.java, java/net/ContentHandler.java, java/net/ContentHandlerFactory.java, java/net/DatagramPacket.java, java/net/DatagramSocket.java, java/net/DatagramSocketImpl.java, java/net/DatagramSocketImplFactory.java, java/net/FileNameMap.java, java/net/HttpURLConnection.java, java/net/Inet4Address.java, java/net/Inet6Address.java, java/net/InetAddress.java, java/net/InetSocketAddress.java, java/net/JarURLConnection.java, java/net/MalformedURLException.java, java/net/MulticastSocket.java, java/net/NetPermission.java, java/net/NetworkInterface.java, java/net/NoRouteToHostException.java, java/net/PasswordAuthentication.java, java/net/PortUnreachableException.java, java/net/ProtocolException.java, java/net/ServerSocket.java, java/net/Socket.java, java/net/SocketAddress.java, java/net/SocketException.java, java/net/SocketImpl.java, java/net/SocketImplFactory.java, java/net/SocketOptions.java, java/net/SocketPermission.java, java/net/SocketTimeoutException.java, java/net/URI.java, java/net/URISyntaxException.java, java/net/URL.java, java/net/URLClassLoader.java, java/net/URLConnection.java, java/net/URLDecoder.java, java/net/URLEncoder.java, java/net/URLStreamHandler.java, java/net/URLStreamHandlerFactory.java, java/net/UnknownHostException.java, java/net/UnknownServiceException.java: Fixed javadocs, coding style and argument names all over. From-SVN: r80900 --- libjava/java/net/ContentHandler.java | 39 ++++++++++++++++++------------------ 1 file changed, 19 insertions(+), 20 deletions(-) (limited to 'libjava/java/net/ContentHandler.java') diff --git a/libjava/java/net/ContentHandler.java b/libjava/java/net/ContentHandler.java index ed74698..5e3de23 100644 --- a/libjava/java/net/ContentHandler.java +++ b/libjava/java/net/ContentHandler.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 @@ -47,11 +47,11 @@ import java.io.IOException; /** * This is an abstract class that is the superclass for classes that read - * objects from URL's. Calling the getContent() method in the - * URL class or the URLConnection class will cause - * an instance of a subclass of ContentHandler to be created for - * the MIME type of the object being downloaded from the URL. Thus, this - * class is seldom needed by applications/applets directly, but only + * objects from URL's. Calling the getContent() method in the + * URL class or the URLConnection class will cause + * an instance of a subclass of ContentHandler to be created for + * the MIME type of the object being downloaded from the URL. Thus, this + * class is seldom needed by applications/applets directly, but only * indirectly through methods in other classes. * * @author Aaron M. Renn (arenn@urbanophile.com) @@ -66,8 +66,8 @@ public abstract class ContentHandler /** * Default, no-argument constructor. */ - public ContentHandler() - { + public ContentHandler() + { } /* @@ -75,10 +75,10 @@ public abstract class ContentHandler */ /** - * This method reads from the InputStream of the passed in URL - * connection and uses the data downloaded to create an Object - * represening the content. For example, if the URL is pointing to a GIF - * file, this method might return an Image object. This method + * This method reads from the InputStream of the passed in URL + * connection and uses the data downloaded to create an Object + * represening the content. For example, if the URL is pointing to a GIF + * file, this method might return an Image object. This method * must be implemented by subclasses. * * @param urlc A URLConnection object to read data from. @@ -87,16 +87,16 @@ public abstract class ContentHandler * * @exception IOException If an error occurs */ - public abstract Object getContent(URLConnection urlc) + public abstract Object getContent(URLConnection urlc) throws IOException; /** * This method reads from the InputStream of the passed in URL * connection and uses the data downloaded to create an Object - * represening the content. For example, if the URL is pointing to a GIF - * file, this method might return an Image object. This method + * represening the content. For example, if the URL is pointing to a GIF + * file, this method might return an Image object. This method * must be implemented by subclasses. This method uses the list of - * supplied classes as candidate types. If the data read doesn't match + * supplied classes as candidate types. If the data read doesn't match * any of the supplied type, null is returned. * * @param urlc A URLConnection object to read data from. @@ -113,15 +113,14 @@ public abstract class ContentHandler public Object getContent(URLConnection urlc, Class[] classes) throws IOException { - Object obj = getContent (urlc); + Object obj = getContent(urlc); for (int i = 0; i < classes.length; i++) { - if (classes [i].isInstance (obj)) - return obj; + if (classes[i].isInstance(obj)) + return obj; } return null; } - } // class ContentHandler -- cgit v1.1