provide also create annotation from usage (IDEA-19746 )

This commit is contained in:
anna
2011-08-25 19:26:03 +02:00
parent 6791554063
commit 0f5615356b
10 changed files with 73 additions and 1 deletions
@@ -0,0 +1,7 @@
// "Create Annotation 'Smth'" "true"
class Test {
void foo(@Smth String s){}
}
public @interface Smth {
}
@@ -0,0 +1,4 @@
// "Create Annotation 'Smth'" "true"
class Test {
void foo(@S<caret>mth String s){}
}
@@ -0,0 +1,4 @@
// "Create Annotation 'Smth'" "false"
class Test {
void foo(S<caret>mth s){}
}