jdee
jdee copied to clipboard
The JDEE is an add-on software package that turns Emacs into a comprehensive system for creating, editing, debugging, and documenting Java applications.
I just updated my emacs packages and memoize got removed (deprecation). Now jde won't load because it depends on memoize.
Still jdee-checkstyle.el is present but trying yields: /usr/lib64/jvm/javaLatest/bin/java -classpath /home/ernst/.emacs.d/jdee-master/java/lib/checkstyle-all.jar com.puppycrawl.tools.checkstyle.Main -c /home/ernst/.emacs.d/jdee-master/java/lib/sun_checks.xml Actions.java Error: Could not find or load main class com.puppycrawl.tools.checkstyle.Main Well, the jar is missing. Do you...
When a java file is opened JDEE creates a copy of the file/buffer in a temp flycheck directory and then creates a bsh instance, performs the compilation/flycheck and then attempts...
Hi, In my code I have the line: `static TextAnalyzer analyzer = new TextAnalyzer(true);` If I put the cursor on the leftmost "TextAnalyzer" and call "jdee-open-class-at-point", I get: `Can not...
The class and resource files like 'lib/tools.jar', 'lib/rt.jar' are removed on JAVA9 (JEP220:: http://openjdk.java.net/jeps/220) It causes the jdee-get-tools-jar's malfunction and therefore JDEE doesn't work. (Emacs's *Messages*:: jdee-get-tools-jar: Cannot find JDK's...
I compile and run test.java; there will be a buffer named "*test*" in JDE Run Mode; Then I modify the test.java, compile . everything goes fine. However when I run...
Hello, I can see in the git repo that there is a number of documentations: - a docbook of jdee - a docbook of jdb (debugging) - a .texi texinfo...
In my code, I have: ``` // boost emails that are tagged (=already checked as) "valid" CollectionUtilities.incr(patternCounts, pattern, (valid)?VALIDATED_EMAILS_BOOST:1); ``` When I put the cursor on `CollectionUtilities` and run `jdee-open-class-at-point`,...
Indentation for annotations doesn't work properly.
Say two classes A, B are in the same package. When I'm in file B.java, I should be able to access members from A that have no access modifier specified....