Files
openide/java/java-tests/testData/codeInsight/addJavadoc/afterDifferentParamNames.java
T
Tagir Valeevandintellij-monorepo-bot 6dbdc8338e [javadoc] IDEA-372322 Refactor FixDocCommentAction#generateComment to avoid Editor dependency
Also convert AddJavadocIntention to ModCommand

GitOrigin-RevId: f33816159a5805395a63ad3107f4b895659f375b
2025-05-12 09:58:57 +00:00

30 lines
757 B
Java

// "Add Javadoc" "true-preview"
class A {
/**
* @param b it's a description
* for the
* second param
* @param a it's a description for the first param
* @param blah it's a description
* for a nonexistent parameter
* @param c it's a description
* for the third param
*/
void test(int a, int b, int c, int d) {}
}
class B extends A {
/**
* @param x it&apos;s &#97; description for the first param <caret>
* @param y it's a description
* for the
* second param
* @param z it's a description
* for the third param
* @param w
*/
@Override
void test(final int x, int y, int z, int w) {}
}