The patch below gets rid of a few javadoc warnings during the build process (in the document, javadoc and todo targets). They're mainly due to incorrect method signatures in the @see tags - resulting from refactoring, perhaps?
The only warning left is one about the method popClass, referred to by xdoclet.SubTask.pushClass(...) However, I can't see that method anywhere (the only mention is in the javadoc comment). Assuming it's no longer needed, that @see (line 881 of SubTask.java) should be removed as well. Oh yes, there's a typo fixed in there too. Andrew. Index: core/src/xdoclet/SubTask.java =================================================================== RCS file: /cvsroot/xdoclet/xdoclet/core/src/xdoclet/SubTask.java,v retrieving revision 1.55 diff -r1.55 SubTask.java 3405c3405 < * @see #isOfType(com.sun.javadoc.ClassDoc,java.lang.String,int) --- > * @see #isOfType(Type,java.lang.String,int) 3427c3427 < * TYPE_SUPERCALASS or TYPE_HIERARCHY --- > * TYPE_SUPERCLASS or TYPE_HIERARCHY 3548c3548 < * @see #isOfType(com.sun.javadoc.ClassDoc,java.lang.String,int) --- > * @see #isOfType(Type,java.lang.String,int) Index: core/src/xdoclet/TemplateSubTask.java =================================================================== RCS file: /cvsroot/xdoclet/xdoclet/core/src/xdoclet/TemplateSubTask.java,v retrieving revision 1.2 diff -r1.2 TemplateSubTask.java 39,42c39,42 < * @see setOfType() < * @see getOfType() < * @see setExtent() < * @see getExtent() --- > * @see #setOfType(java.lang.String) > * @see #getOfType() > * @see #setExtent(TemplateSubTask.ExtentTypes) > * @see #getExtent() 51,54c51,54 < * @see setExtent() < * @see getExtent() < * @see setOfType() < * @see getOfType() --- > * @see #setExtent(TemplateSubTask.ExtentTypes) > * @see #getExtent() > * @see #setOfType(java.lang.String) > * @see #getOfType() _______________________________________________ Xdoclet-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-devel
