IDEA-54220 Code Completion for value() method in @interfaces could be added

This commit is contained in:
peter
2012-03-07 20:24:50 +04:00
parent 91fb524a30
commit f3b09cee3a
7 changed files with 38 additions and 5 deletions
@@ -0,0 +1,3 @@
@interface Some {
String v<caret>
}
@@ -0,0 +1,3 @@
@interface Some {
String value()<caret>
}
@@ -0,0 +1,7 @@
public class Foo {
public void a() {
int i = createStylesheetCombobox();
}
private int createStylesheetCombobox<caret>
}