/**
  *
  * FILENAME:  MyClass.java
  * WHO:       Cat in the Hat
  * WHEN:      Sept 6, 2011
  * WHAT:      Sample template for java programs
  * LAST MODIFIED:  Sept 6, 2011
  */

// import any libraries you need here:


// the name of the class, MyClass, should match the 
// name of the file, eg MyClass.java
public class MyClass {
    /**
      *  Comment for method1 goes here
      *
      */
      public static method1() {  // this is a class method


      }

    /**
      *  Comment for method2 goes here
      *
      */
      public static method2() {  // this is a class method


      }

    /**
      *  Comment for method3 goes here
      *
      */
      public static method3() {  // this is a class method


      }
 
 public static void main (String[] args) { // the declaration of the main method
                                           //   the main method is automatically executed
	    			           //   when the program is run (e.g. java MyClass)


  }// main

}//MyClass