/**
 *LeaveRegister.java
 *Purpose: Singleton class to tell the Employee to Leave the Register
 *@author Joel Grochowski
 *@version 1.0
 */

public class LeaveRegister extends ObjectJob
{
  /**
   *instance
   *Purpose: private static instance of this class for singleton purposes
   */
  private static LeaveRegister instance;

  /**
   *LeaveRegister()
   *Purpose: General Constructor for LeaveRegister
   *@param none
   */
  private LeaveRegister()
  {
    super("LeaveRegister");
  }

  /**
   *getInstance()
   *Purpose: Singleton accessor for this class
   *@param none
   *@return LeaveRegister the instance of this class
   */
  public static LeaveRegister getInstance()
  {
    if(instance == null)
      instance = new LeaveRegister();
 
    return instance;
  }




}
