jeremias 2003/07/27 10:20:59
Modified: io/src/java/org/apache/commons/io HexDump.java
Log:
Javadocs
Revision Changes Path
1.2 +5 -10
jakarta-commons-sandbox/io/src/java/org/apache/commons/io/HexDump.java
Index: HexDump.java
===================================================================
RCS file:
/home/cvs/jakarta-commons-sandbox/io/src/java/org/apache/commons/io/HexDump.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- HexDump.java 22 Feb 2002 06:12:38 -0000 1.1
+++ HexDump.java 27 Jul 2003 17:20:59 -0000 1.2
@@ -56,19 +56,14 @@
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
- *
*/
-
-
package org.apache.commons.io;
-
import java.io.IOException;
import java.io.OutputStream;
-
/**
- * dump data in hexadecimal format; derived from a HexDump utility I
+ * Dump data in hexadecimal format; derived from a HexDump utility I
* wrote in June 2001
*
* Taken from the POI project
@@ -77,7 +72,6 @@
* @author Marc Johnson
* @version $Revision$ $Date$
*/
-
public class HexDump {
// all static methods, so no need for a public constructor
@@ -146,6 +140,7 @@
}
}
+ /** line-separator (initializes to "line.separator" system property. */
public static final String EOL =
System.getProperty("line.separator");
private static final StringBuffer _lbuffer = new StringBuffer(8);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]