Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JavaDoc Packages Problem

Status
Not open for further replies.

Nosh

Programmer
Jul 12, 2001
34
GB
Hi Folks,

This is probably really dumb but I'm a bit stuck.

I have a directory H:\eReturns\eASC_Returns\src\com\bt\eReturns\common all the java classes in that directory belong to the package com.bt.eReturns.common.

When I run the following Javadoc command I get the error
javadoc: No package, class, or source file found named com.bt.eReturns.common.
1 error

javadoc -d c:\javadoc -sourcepath H:\eReturns\eASC_Returns\src\com\bt\eReturns\common com.bt.eReturns.common

I have set the CLASSPATH to point at H:\eReturns\eASC_Returns\src\com\bt\eReturns\common
so I don't understand why it's not working.

Can anybody help me please.

Many Thanks
 
CLASSPATH and sourcepath should point at
H:\eReturns\eASC_Returns\src

You putting it too far in the directory tree.
 
Thats done the trick - Thanks a lot!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top