mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
13 lines
378 B
Java
13 lines
378 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
// "Implement method 'foo'" "true"
|
|
abstract class Test {
|
|
public abstract void foo(@org.jetbrains.annotations.Nullable String a);
|
|
}
|
|
|
|
class TImple extends Test {
|
|
@Override
|
|
public void foo(@Nullable String a) {
|
|
<selection>//To change body of implemented methods use File | Settings | File Templates.</selection>
|
|
}
|
|
} |