I have a limited selection of source code superimposed on the decompiled code in the source bank.
This is great, as it gives me an easy way to deploy code during debugging, however it seems to have a side effect of disabling javadoc from the associated javadoc.jar from working in eclipse, despite the fact that I have a separate javadoc.jar file with javadoc in it.
I assume this is because eclipse finds the "source code" and assumes that all javadoc is in the source, and therefore there is no need to check the javadoc.jar file.
I would like to say eclipse (preferably using maven) so as not to use source.jar for javadoc and use javadoc.jar. I would still like to use source.jar for the source code.
I suggested that eclipse prefers to display javadoc from sources and might be wrong, so please correct me if that is the case.
In addition, I can just do something just wrong, so please let me know if that is the case.
source share