Links to common documents / HTML Pages
Is there a way to create links in Javadoc to a common document. For example, I have a glossary doc that I would like to link to in various places. Using doc-files would be fine if all of my javadoc came out of one package. But there are many packages and I don't want to copy the glossary doc file to multiple doc-files directories.
xxx.xxx.xxx.xxx.xxx.pg1.ClassA
xxx.xxx.xxx.xxx.xxx.pg2.ClassB
xxx.xxx.xxx.xxx.xxx.pg3.ClassC
xxx.xxx.xxx.xxx.xxx.pg4.ClassD
xxx.xxx.xxx.xxx.xxx.pg5.ClassE
/myGlossary/Dir/myGlossary.doc
Each class has five methods and I want to add a link in each method to document myGlossary.doc
Actually myGlossary.doc could be anything... HTML, PDF, XLS,
Thanks in advance.

