Hi,

the rewrite of the doclet API shipped with Classpath contains two errors.

In Doc.java, "String setRawCommentText()" should be "String
getRawCommentText()"
In DocErrorReporter.java, "void printNotice()" should be "void
printNotice(String notice)"

diff /usr/src/classpath-0.02/com/sun/javadoc/Doc.java
com/sun/javadoc/Doc.java
108c108
< setRawCommentText();
---
> getRawCommentText();

diff /usr/src/classpath-0.02/com/sun/javadoc/DocErrorReporter.java
com/sun/javadoc/DocErrorReporter.java
56c56
< printNotice();
---
> printNotice(String notice);

Also I think the abstract keyword should be removed from all interfaces
and interface methods.

Julian


_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath

Reply via email to