Add a custom header and footer to standard Javadoc output
Is there an "easy" way to build a custom header and footer and add it to the standard HTML file output from Javadoc?
For example, I need to place tags in my Java source files to designate variable data I want to include along with the standard Javadoc output. The new tags would appear similar to the following:
/**
@security.line1PROPRIETARY
@security.line2FOR INTERNAL USE ONLY
@security.projectNameA PROJECT WE WANT
@security.contractStatusBIDDING
@security.contractDate10 APRIL 2006
*/
I then want to parse these custom tags and add a header and footer to the standard Javadoc output similar to the following:
PROPRIETARY
FOR INTERNAL USE ONLY
A PROJECT WE WANT
{ Standard JavaDoc output }
A PROJECT WE WANTContract Status: BIDDING
Contract Bid Date: 10 APRIL 2006
FOR INTERNAL USE ONLY
PROPRIETARY
Will you please provide me a link to some sample code for doing so? Your help will be greatly appreciated.
Thanks in advance,
Phil Bryant
philbryant@merc.mercer.edu
phillip.bryant@robins.af.mil
<><

