mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +07:00
11 lines
258 B
Java
11 lines
258 B
Java
// "Implement method 'foo'" "true"
|
|
abstract class Test {
|
|
abstract void foo();
|
|
}
|
|
|
|
class TImple extends Test {
|
|
@Override
|
|
void foo() {
|
|
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
|
|
}
|
|
} |