On Mon, 2009-08-17 at 11:52 +0200, Ludovic Courtès wrote: > > JDEE has a `.class' parser written in elisp (jde-parse-class.el). My > understanding is that it's currently underutilized, as the commentary in > this file suggests. > > In an ideal world, Semantic/Senator's neat completion framework would > allow us to complete things regardless of whether they are defined in a > `.java' or `.class' file---as opposed to choosing between `C-c C-v .' > and `M-/' depending on the phase of the moon. >
Howdy, CEDET/Semantic has a semanticdb class hierarchy that Paul K originally provided the inspiration for for just this purpose. With it, you can create a database back-end that can import any kind of file or external application into Semantic tags which will feed into the Semantic completion engine. Joakim V. has already created a backend originally for beanshell, but more recently with clojure, for doing this task, but it is not finished. If someone wanted to finish this project, I'm sure Joakim would lend a hand, and I'll help with anything on the CEDET/Semantic side. By way of example, you can use a GNU Global tags system to search for tags, or CScope. There is an example for Emacs Lisp, and Ebrowse also. Many of these tag databases provide incomplete information. It is my understanding that the Java one will be much more complete, which would be great for Java programmers. Eric ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ jdee-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jdee-users
