--- "Holbrook, R Cody (Cody)" <[EMAIL PROTECTED]> wrote: > Hello all, > > I'm extremely new to xdoclet and mostly new to > programming as I am transitioning from hardware to > software. In otherwords, please be gentle. > > I've downloaded the newest xdoclet, I'm able to > build from the samples directory (the build.xml was > in this folder) and have been able to tweak some > files to see how some of this works. The problem is > I don't have concrete answers to my questions, so > I'm hoping that by posing them now, I can find some > answers that will like spawn another batch of > questions, but at least get me to the point that I > can make some progress. > > Here's what I'd like to do. I want to make some of > my own tags, like @mytag. After that, I want to be > able to comment with these tags such that when I > build, the tags don't cause trouble with javadoc and > the comments using the tags I made are collected and > generated in html. From what I can tell, webworks > takes on most of that work for you. > > What it comes down to is I don't know what files I > have to make myself, what files are generated, and > what steps I should be taking. I really need to be > stepped through because I'm failing miserably!
Hmm, writiung support for your own tags in current xdoclet version is in no way trivial. Though not impossible. At the moment tags are defined by they usage in templates, so basically you can write template ( look at those .xdt files in XDoclet sources ) and use your tags from there. Then you can use template subtask to apply this template to your classes and get some result. But beware, current templating language is in no way easy to use, it's not intuitive etc. pp. If you succeed in achieving what you like you will be no more "new " to xdoclet, and neithjer to programming :) regards, ===== Konstantin Priblouda ( ko5tik ) Freelance Software developer < http://www.pribluda.de > < play java games -> http://www.yook.de > < render charts online -> http://www.pribluda.de/povray/ > __________________________________________________ Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. The most comprehensive and flexible code editor you can use. Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. www.slickedit.com/sourceforge _______________________________________________ xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
