import java.awt.*;
import java.awt.event.*;
public class TwoButtons extends Frame implements ActionListener
{
. . . . more code will go here . . . .
public static void main ( String[] args )
{
TwoButtons demo = new TwoButtons() ;
. . . . more code will go here . . . .
demo.setSize( 200, 150 );
demo.setVisible( true );
}
}
. . . . more code will go here . . . .
|