import javax.swing.*;

public class JCounterTestApplet extends JApplet {
    public void init ( ) {
	JCounterTest test = new JCounterTest ( );
	getContentPane().add ( test );
	validate();
	setVisible ( true );
    }
}
