mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
Java: Provide completion for nested class names in reflection API (IDEA-181545)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import foo.bar.*;
|
||||
class Main {
|
||||
void foo() throws ReflectiveOperationException {
|
||||
Class.forName("foo.bar.PublicClass.<caret>");
|
||||
Class.forName("foo.bar.PublicClass$<caret>");
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import foo.bar.*;
|
||||
class Main {
|
||||
void foo() throws ReflectiveOperationException {
|
||||
Class.forName("foo.bar.PublicClass$Nested<caret>");
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import foo.bar.*;
|
||||
class Main {
|
||||
void foo() throws ReflectiveOperationException {
|
||||
Class.forName("foo.bar.PublicClass$NestedClass");
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
import foo.bar.*;
|
||||
class Main {
|
||||
void foo() throws ReflectiveOperationException {
|
||||
Class.forName("foo.bar.PublicClass.NestedClass");
|
||||
Class.forName("foo.bar.PublicClass$NestedClass");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user