Where can I get the jar files for the com.sun.tools package?

Where can I get the jar files for the com.sun.tools package?

I'm trying out the following code to generate JavaDocs for my packages "package1" & "package2" from inside this code (below); and the compilers complain about the com.sun.tools.javadoc package not found..

Thanks in advance.

Nirmalya

String args[] =new String[]{"-d","docs","-sourcepath","C:\temp\src\", "package1", "package2"};

try{ com.sun.tools.javadoc.Main.execute(args);}

catch (Exception e){ e.printStackTrace ();}

[915 byte] By [imNirmalyaa] at [2007-9-28 8:35:54]
# 1
com.sun.tools package is in jdk1.4/lib/tools.jar Include tools.jar in your classpath.
dvohra09a at 2007-7-9 20:26:36 > top of Java-index,Developer Tools,Java Compiler...