mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
24 lines
495 B
Java
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) {}
|
|
} |