javadoc link

User 870ab5b546

27-12-2008 04:35:02

I'm creating an API for ACE, and I want it to have links to the JChem API. I've tried both





Code:
-link http://www.chemaxon.com/jchem/doc/api/






and





Code:
-link jchemAPI






(where jchemAPI is a symlink to the local API) and neither one gives me joy. With





Code:
-link http://java.sun.com/j2se/1.5.0/docs/api






I'm able to link to Sun's Javadoc, so I have links for things like Strings, Hashtables, etc. With ChemAxon classes, when I run javadoc, I get messages like this:





Code:
/home/aceorg/aceorg/DEV-1.7/epoch-plugin/src/com/prenhall/epoch/Response.java:7: package chemaxon.formats does not exist


import chemaxon.formats.MolImporter;


                        ^








Any ideas as to what I can do?

ChemAxon 7c2d26e5cf

28-12-2008 15:47:15

Probably, you have missed enumerating MarvinBeans.jar or jchem.jar in the classpath of javadoc.


If javadoc does not found compiled Marvin/JChem classes, references to Marvin/JChem apidoc will be neglected.

User 870ab5b546

28-12-2008 16:39:11

Thanks, that helped a lot.