As suggested in other threads, I prototyped a doclet to link glXXX methods to external webpages. The result can be seen here (only the 160+ methods from the bluebook 1.0 are linked…take a Look at the glAccum for example)
Writing the doclet was a major pain in the a… and I am still unable to make this work for different JDK platforms, so I doubt this is the way to go (I am seriously shocked by the javadoc doclet api, respectively the default implementation)
The right way to implement custom links in the javadoc seem to be taglets, which feature a much cleaner and simpler api. To be able to use this feature, the gluegen has to augment the javadoc comments with a custom inline tag, like {@native void glBegin(GLenum mode)}. This way I can write a Taglet, that wires the online-reference or whatever to the javadoc.
So Ken, what do you think?