/*
 * Keith A. Pray
 * March 2002
 */

/*
 *    DummyWait.java
 */

//********************************************************//

import java.lang.InterruptedException;

//********************************************************//

/**
 * This simply waits for 1 minute and exits. It is sueful 
 * for when you want to have a java process running and 
 * taking as little resources as possible.
 *
 * @author Keith A. Pray (kap@wpi.edu)
 * @version $Revision: 0.9 $
 */

public class DummyWait
{

//********************************************************//
// ----- Data Members -----
//********************************************************//

//********************************************************//
// ----- Methods-----
//********************************************************//

    public DummyWait()
    {
    }

//********************************************************//

  /**
   * Main method for running this class.
   *
   * @param argv 
   */

  public static void main ( String [] argv )
  {
	try
	    {
		Thread.sleep ( 30000 );
	    }
	catch ( java.lang.InterruptedException e )
	    {

	    }

  } // END main ( String [] argv )

//********************************************************//

} // END public class DummyWait




