/**
* _Template.txt - Standard new class template
* This is wider than the old template. These are 67 character long
* lines designed to allow two files to be side by side on a 1280 
* pixel wide acreen with slider overlap. A 1400 pixel wide screen
* has no overlap. As of November 99 Jack is using a 1400 by 1050
* screen due to his nifty new Dell Inspiron 7500. WOW!
*
* The source code divisions are in order of importance. We are now
* encouraging protected instead of private methods.
*/

package org.jcon.core.test;

/**
* This class.... (describe responsiblities fully here)
*
* @author Jack Harich
*/
public class ClassName {

//---------- Internal Fields -------------------------------------

//---------- Initialization --------------------------------------

//---------- Superclass Overrides --------------------------------

//---------- Something Implementation ----------------------------

//---------- Properties ------------------------------------------

//---------- Events ----------------------------------------------

//---------- Public Methods --------------------------------------

//---------- Protected Methods -----------------------------------

//---------- Standard --------------------------------------------
private static void print(String text) {
    System.out.println("ClassName" + text);
}

} // End class