Files
openide/java/java-tests/testData/refactoring/extractMethod/AnonInner_after.java
2009-09-11 16:17:56 +04:00

26 lines
521 B
Java

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 ) {
newMethod();
}
private void newMethod() {
setVisible( false );
}
};
}
}