I have an interface and an implemntation like

public interface IFoo {
  public int $_getFoo();
}


public class Foo implements Ifoo {

  /**
   * @see IFoo#$_getFoo
   */
  public int $_getFoo() {
     return 0;
  }
}


IDEA javadoc pareser flags the @see as an error (can not resolve symbol)
This seems to be due to the unusual (on purpose) $_ prefix 

Edo

---
Edoardo Comar
Cape Clear Software 

NEW CapeStudio 3, out now
Design, develop, integrate & deploy Web Services
http://www.capeclear.com/download


_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to