SystemUtil.java

package com.ociweb.lang; /** * To use the static methods of this class directly in another class, * as if the methods were defined in that class, * use a Java 5 static import as follows. * * import static com.ociweb.lang.SystemUtil.*; */ public class SystemUtil { public static void out(String text) { System.out.println(text); } }

Copyright © 2007 Object Computing, Inc. All rights reserved.