Posted By:
bernard_poulin
Posted On:
Friday, May 25, 2001 03:14 PM
before java & javadocs, comments (on our legacy code) look like that: /*================================== ..some comments ----------------------------------*/ the comment was very light and readable. Now, to be compliant javadoc: we inserted HTML comments: /** < !-- ======================= -- > ... some comments < !-- -------------------------- -- > */ Is there a way to customize javadoc. so that it would ignore the '===' and '---' lines so we don't have to put HTML comments? We know javadoc ALREADY does some skipping of the first encountered star-only word '******'. /**===
More>>
before java & javadocs, comments (on our legacy code) look like that:
/*==================================
..some comments
----------------------------------*/
the comment was very light and readable.
Now, to be compliant javadoc: we inserted HTML comments:
/**
< !-- ======================= -- >
... some comments
< !-- -------------------------- -- > */
Is there a way to customize javadoc. so that it would ignore the '===' and '---' lines so we don't have to put HTML comments? We know javadoc ALREADY does some skipping of the first encountered star-only word '******'.
/**====================================
.. some comment
-------------------------------------*/
We already built a custom doclet to insert new tags. But I don't see a simple way to remove '=====' and '------' lines.
anybody?
Regard,
<<Less