mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 03:51:12 +07:00
13 lines
200 B
Java
13 lines
200 B
Java
// "Pull method 'foo' to 'Foo' and make it abstract" "true"
|
|
public class Test {
|
|
void bar() {
|
|
class Foo {}
|
|
class FooImpl extends Foo {
|
|
@Overr<caret>ide
|
|
void foo(){}
|
|
}
|
|
}
|
|
}
|
|
|
|
|