import java.awt.*;
import java.awt.event.*;

public class OKButton extends Button {

    // A constructor which automatically provides the text
    public OKButton() {
       super("OK");
    }
  
    // A constructor to register the action listener
    // at instantiation time
    public OKButton(ActionListener al) {
       this();
       addActionListener(al);
    }
}
