Java: Provide completion for arguments of Class.getAnnotation() and Class.getConstructor(), tests added (IDEA-167250)

This commit is contained in:
Pavel Dolgov
2017-02-10 13:05:28 +03:00
parent ece87efcca
commit 24e71dc952
21 changed files with 567 additions and 147 deletions
@@ -0,0 +1,7 @@
import foo.bar.*;
class Main {
void foo() throws ReflectiveOperationException {
Class<Annotation> aType = Baz.class;
Test.class.getAnnotation(<caret>);
}
}