mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 04:40:28 +07:00
15 lines
308 B
Java
15 lines
308 B
Java
interface InspectionManager {
|
|
static InspectionManager getInstance() {
|
|
return null;
|
|
}
|
|
}
|
|
interface InspectionManagerEx extends InspectionManager {
|
|
GlobalInspectionContext createContext();
|
|
}
|
|
interface GlobalInspectionContext {}
|
|
|
|
class Test {
|
|
void m() {
|
|
GlobalInspectionContext c = <caret>
|
|
}
|
|
} |