net.sf.bt747.j2se.app.utils
Class Utils

java.lang.Object
  extended by net.sf.bt747.j2se.app.utils.Utils

public final class Utils
extends java.lang.Object

Utility class.

Author:
Mario De Weerd

Constructor Summary
Utils()
           
 
Method Summary
static java.lang.String format(java.lang.String format, java.lang.Object... args)
          Gcj does not know String.format, so adding local implementation.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Utils

public Utils()
Method Detail

format

public static final java.lang.String format(java.lang.String format,
                                            java.lang.Object... args)
Gcj does not know String.format, so adding local implementation. This is needed for Java compilation.

Parameters:
format - The format in the usual way ("%s,%i" for instance).
args - Arguments for format.
Returns:
formatted string.