jeremias 2003/07/27 10:21:27
Modified: io/src/java/org/apache/commons/io IOUtils.java
Log:
Javadocs
Revision Changes Path
1.3 +11 -13
jakarta-commons-sandbox/io/src/java/org/apache/commons/io/IOUtils.java
Index: IOUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/io/src/java/org/apache/commons/io/IOUtils.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- IOUtils.java 25 Jul 2003 08:17:10 -0000 1.2
+++ IOUtils.java 27 Jul 2003 17:21:27 -0000 1.3
@@ -111,16 +111,8 @@
* (or three if the destination stream is also buffered) is pointless, and the
unnecessary buffer
* management hurts performance slightly (about 3%, according to some simple
experiments).</p>
*
- * <p>Origin of code: Apache Avalon (Excalibur)</p>
- *
- * @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
- * @author <a href="mailto:[EMAIL PROTECTED]">Jeff Turner</a>
- * @version CVS $Revision$ $Date$
- */
-
-/*
- * Behold, intrepid explorers; a map of this class:
- *
+ * <p>Behold, intrepid explorers; a map of this class:</p>
+ * <pre>
* Method Input Output Dependency
* ------ ----- ------ -------
* 1 copy InputStream OutputStream (primitive)
@@ -141,12 +133,18 @@
* 12 copy byte[] Writer 3
* 13 toString byte[] String 12
* 14 copy byte[] OutputStream (trivial)
+ * </pre>
*
+ * <p>Note that only the first two methods shuffle bytes; the rest use these
+ * two, or (if possible) copy using native Java copy methods. As there are
+ * method variants to specify buffer size and encoding, each row may
+ * correspond to up to 4 methods.</p>
*
- * Note that only the first two methods shuffle bytes; the rest use these two, or
(if possible) copy
- * using native Java copy methods. As there are method variants to specify buffer
size and encoding,
- * each row may correspond to up to 4 methods.
+ * <p>Origin of code: Apache Avalon (Excalibur)</p>
*
+ * @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
+ * @author <a href="mailto:[EMAIL PROTECTED]">Jeff Turner</a>
+ * @version CVS $Revision$ $Date$
*/
public final class IOUtils
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]