On Fri, 19 Feb 2010 09:46:07 -0500, Viktor Haag <[email protected]> wrote: > Hello, > > I'm a fairly naive user of Java Development Environments: I'm a technical > writer, not a developer. I'd like to use JDEE and Emacs to contribute > Javadoc documentation to our large library of Java sourcecode at work. Our > entire Java source environment is self contained into two directories: let's > call them /src/Java/Applications/com/myCompany/etc/etc and > /src/Java/Platform/com/myCompany/etc/etc. > > I have JDEE 2.4.0.1 installed and it seems to be loading fine. > > However, I can't get the code browsing features to work: when I open one > file, I'd like to be able to "hop to" another file to follow definitions for > classes and so on. > > I've gotten so far as to define the variable "jde-sourcepath" and provided > the two directory paths listed above, but that doesn't seem to be working > (actually, the values are "/src/Java/Applications/" and > "/src/Java/Platform/" because I assumed that, from that point on, the Java > namespace expressed in the import statements in the Java files would work > from there. > > Can someone please give me a hand with this?
The JDEE extracts this kind of information from the compiled class files, so you need to tell it where to find them using the `jde-global-classpath' variable. After doing that jde-open-class-at-point and friends should work (assuming your project is built). -Tobias ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ jdee-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jdee-users
