Class PersonnelMgr

java.lang.Object
  |
  +--PersonnelMgr

public class PersonnelMgr
extends java.lang.Object

This is the main class of a simple Java program. In this initial implementation, it just creates a new object based on the UWPerson class, then prints out information about that object.


Constructor Summary
PersonnelMgr()
           
 
Method Summary
static void main(java.lang.String[] arg)
          Test run.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PersonnelMgr

public PersonnelMgr()
Method Detail

main

public static void main(java.lang.String[] arg)
Test run. Create a new object, then use System.out.println() to print out information about the object.

Parameters:
arg - String array of use supplied command line arguments. Arguments are ignored in this implementation.