All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptix.util.Debug

java.lang.Object
   |
   +----cryptix.util.Debug

public class Debug
extends Object
Note: Debug is deprecated.

All the methods of this class have equivalents that use methods from cryptix.util.core.Hex.

Copyright © 1995-1997 Systemics Ltd on behalf of the Cryptix Development Team.
All rights reserved.

$Revision: 1.2 $

Author:
David Hopwood
See Also:
Hex

Method Index

 o print(byte[])
Deprecated.
 o println(byte[], int)
Deprecated.
 o println(byte[], int, int)
Deprecated.
 o println(PrintStream, byte[], int, int)
Deprecated.

Methods

 o println
 public static void println(byte buf[],
                            int len)
Note: println() is deprecated. Use System.err.print(cryptix.util.core.Hex.dumpString(buf, 0, len)) instead.

 o println
 public static void println(byte buf[],
                            int len,
                            int ptr)
Note: println() is deprecated. Use System.err.print(cryptix.util.core.Hex.dumpString(buf, ptr, len)) instead.

 o println
 public static void println(PrintStream out,
                            byte buf[],
                            int len,
                            int ptr)
Note: println() is deprecated. Use out.print(cryptix.util.core.Hex.dumpString(buf, ptr, len)) instead.

 o print
 public static void print(byte buf[])
Note: print() is deprecated. Use System.err.print(cryptix.util.core.Hex.dumpString(buf)) instead.


All Packages  Class Hierarchy  This Package  Previous  Next  Index