FileDocCategorySizeDatePackage
NetLogSimple.javaAPI DocExample726Sat Apr 28 10:22:42 BST 2001None

NetLogSimple

public class NetLogSimple extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] args)


		System.out.println("NetLogSimple: Starting...");

		// Get the connection to the NetLog
		NetLog nl = new NetLog();

		// Show sending a String
		nl.log("Hello Java");

		// Show sending Objects
		nl.log(new java.util.Date());
		nl.log(nl);

		// Show sending null and "" (normally an accident...)
		nl.log(null);
		nl.log("");

		// All done, close the log
		nl.close();

		System.out.println("NetLogSimple: Done...");