>From: "Patrick Balm" <[EMAIL PROTECTED]>
>Consider the following code: > > /** > * Log INFO message into the JavaSpace > * @param String A message > * @param Object The source that is trying to write the message > */ >void info(String message, Object caller) > >IDEA pops up an 'cannot resolve symbol String' box when I move the >mouse/caret over the first @param. >If I change the 'String' into 'message' , it does not appear anymore. Your javadoc style is wrong: http://java.sun.com/products/jdk/1.2/docs/tooldocs/win32/javadoc.html#@param The method signature gives you the parameter type anyway, so listing the types of the parameters one by one is redundant at best. _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. _______________________________________________ Eap-list mailing list [EMAIL PROTECTED] http://www.intellij.com/mailman/listinfo/eap-list
