IDEA-70194 Javadoc: Provide support for completing javadoc parameters description

This commit is contained in:
Denis Zhdanov
2011-05-31 14:31:08 +04:00
parent 095e4340d6
commit 62df932d36
9 changed files with 171 additions and 33 deletions
@@ -0,0 +1,9 @@
class Foo {
/**
* @param argument first arg description<caret>
* @param i
*/
void foo(int argument, int i) {
}
}
@@ -0,0 +1,9 @@
class Foo {
/**
* @param argument first arg description
* @param i <caret>
*/
void foo(int argument, int i) {
}
}
@@ -0,0 +1,9 @@
class Foo {
/**
* @param argument first arg <caret>description
* @param i
*/
void foo(int argument, int i) {
}
}
@@ -0,0 +1,9 @@
class Foo {
/**
* @param argument first arg description
* @param i <caret>
*/
void foo(int argument, int i) {
}
}