IDEA-98283 Wrong code completion within annotations

This commit is contained in:
peter
2012-12-28 17:57:44 +01:00
parent e792c83a41
commit f141942a3d
10 changed files with 103 additions and 75 deletions
@@ -2,7 +2,7 @@
String name();
}
@Column<caret>
@Column(<caret>)
@interface Annotation {
}
@@ -2,7 +2,7 @@
String name();
}
Colu<caret>
@Colu<caret>
@interface Annotation {
}
@@ -0,0 +1,8 @@
public @interface Example {
public static final String FOO = "foo", BAR = "bar";
String value();
}
@Example(Exam<caret>)
@@ -0,0 +1,8 @@
public @interface Example {
public static final String FOO = "foo", BAR = "bar";
String value();
}
@Example(Example<caret>)