/**

 * Description This is sample class THAT IS NOT an application program.

 *

 * @author (your name)

 * @version (a version number or a date)

 */

public class SampleClass

{

            // instance variables - replace the example below with your own

            private int x;

 

 

            /**  WRITE WHAT THIS MESSAGE DOES */

            public void sampleMethod(int y)

            {

                        // put your code here

 

            } // this bracket ends the method

 

 

} // THIS BRACKET ENDS THE CLASS