Reputation: 2166
Referring to the examples given in the post : http://www.javaworld.com/jw-08-2000/jw-0818-javadoc.html#resources
Examples in the post : SimpleDoclet and SimpleOrder
I need to know where do I need to place my SimpleDoclet and SimpleOrder and how do I run this doclet to generate output?
I tried using Generate JavaDoc with the following data :
there are two packages : newPack which contains my classes for which javadoc should be generated and oldPack in which SimpleDoclet is Present
Could you please let me know a solution for this?
Upvotes: 1
Views: 4324
Reputation: 21
I had the same problem; this is my solution:
SimpleDoclet
in the package codegen.samples
SimpleDoclet
as jarname.jar
in C:\xx
codegen.samples.SimpleDoclet
and Doclet class path:
c:\xx\jarname.jar
Upvotes: 2