blob: 34a32465f82e00e3e29d14860157e8ecd75cfbaf [file] [log] [blame]
import javax.swing.*;
import java.awt.event.ActionEvent;
public class ExtractMethods { }
abstract class MyButton
extends JButton
{
protected MyButton( String text ) {
super( text );
}
}
class Foo {
private JButton createOKButton() {
return new MyButton( "OK" ) {
public void actionPerformed( ActionEvent e ) {
<selection> setVisible( false ); </selection>
}
};
}
}