Author: niallp Date: Sat Mar 12 13:53:38 2011 New Revision: 1080933 URL: http://svn.apache.org/viewvc?rev=1080933&view=rev Log: Javadoc improvements
Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ClassLoaderObjectInputStream.java Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ClassLoaderObjectInputStream.java URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ClassLoaderObjectInputStream.java?rev=1080933&r1=1080932&r2=1080933&view=diff ============================================================================== --- commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ClassLoaderObjectInputStream.java (original) +++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/input/ClassLoaderObjectInputStream.java Sat Mar 12 13:53:38 2011 @@ -81,9 +81,12 @@ public class ClassLoaderObjectInputStrea * Create a proxy class that implements the specified interfaces using * the specified ClassLoader or the super ClassLoader. * - * @param interfaces the interfaces to implemnt - * @return the class + * @param interfaces the interfaces to implement + * @return a proxy class implementing the interfaces + * @throws IOException in case of an I/O error + * @throws ClassNotFoundException if the Class cannot be found * @see java.io.ObjectInputStream#resolveProxyClass(java.lang.String[]) + * @since Commons IO 2.1 */ @Override protected Class<?> resolveProxyClass(String[] interfaces) throws IOException,