/**
 * @(#)Test.java
 *
 * JFC Sample application
 *
 * @author 
 * @version 1.00 04/06/05
 */
 
package myprojects.test; 

public class Test {
    
    public static void main(String[] args) {
    	
        // Create application frame.
        TestFrame frame = new TestFrame();
        
        // Show frame.
        frame.show();
    }
}
