Linking to LWJGL Javadoc

Started by avm1979, March 02, 2011, 19:40:59

Previous topic - Next topic

avm1979

I'm writing javadoc for an API, and some of the methods return/take LWJGL classes in as parameters (Vector2f, for example).  I wanted to link it up to the LWJGL javadoc so that references to those classes show up as links.

Using the ant javadoc task, with the following <link> elements:
<link href="http://www.lwjgl.org/javadoc/" />
<link href="http://download.oracle.com/javase/6/docs/api/" />


The Java one works, so classes like String etc become links.  The LWJGL one doesn't, and the javadoc tool complains along the lines of
Test.java:12: package org.lwjgl.util.vector does not exist
[javadoc] import org.lwjgl.util.vector.Vector2f;

For every LWJGL class it finds.

I've checked the package list and that looks to be in order.  Tried setting the link to offline and putting the package list in a local file anyway, but no dice. Not having much luck googling the issue, either.

Thank you for any help!  Maybe I'm missing something obvious, but it's confounding that linking to the java one worked without a problem.