check valueOf signature before use synthetic javadoc (IDEA-81701)

This commit is contained in:
anna
2012-02-23 11:50:18 +01:00
parent 2d474a043f
commit 519ccb6024
4 changed files with 26 additions and 3 deletions
@@ -0,0 +1,3 @@
<html><head> <style type="text/css"> #error { background-color: #eeeeee; margin-bottom: 10px; } p { margin: 5px 0; } </style></head><body><small><b><a href="psi_element://En"><code>En</code></a></b></small><PRE>static&nbsp;int&nbsp;<b>valueOf</b>(int&nbsp;i)</PRE>
myjavadoc
<DD><DL><DT><b>Parameters:</b><DD><code>i</code> - </DD></DL></DD><DD><DL><DT><b>Returns:</b><DD></DD></DL></DD></body></html>
@@ -0,0 +1,12 @@
enum En {
;
/**
* myjavadoc
* @param i
* @return
*/
static int valueOf(int i) {
return i;
}
}