Files
openide/java/java-tests/testData/codeInsight/addJavadoc/afterMethod2.java
2014-06-03 15:06:11 +04:00

13 lines
166 B
Java

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