mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
parameter info generics: check resulted html
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
public abstract class Base {
|
||||
|
||||
public abstract void func();
|
||||
|
||||
public static class Impl extends Base {
|
||||
@Override
|
||||
public void func() {
|
||||
foo(<caret>);
|
||||
}
|
||||
}
|
||||
|
||||
private static boolean foo(String param) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user