Files

24 lines
495 B
Java

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( int e ) {
<selection> setVisible( false ); </selection>
}
};
}
}
class JButton {
public JButton(String text) {
}
public void setVisible(boolean b) {}
}