/* * Dodo.java * * Created on August 19, 2004, 11:43 AM */ package org.my; import javax.swing.JButton; import java.awt.event.ActionListener; /** * * @author ps111113 */ public class Dodo { /** Creates a new instance of Dodo */ public Dodo() { } } class MyTest extends JButton { public MyTest() { super("Ok"); addActionListener(new ActionListener() { }); } }