Files
openide/java/java-tests/testData/codeInsight/addJavadoc/afterMethod2.java

13 lines
174 B
Java

// "Add Javadoc" "true"
class A {
/**
* @param s <caret>
* @return
* @throws Exception
*/
public int foo(final String s) throws Exception {
}
}