add emacs addon for java development which is JDEE

http://sourceforge.net/projects/jdee/

Signed-off-by: philippe lhardy <philippe@pavilionartlogiciel>
This commit is contained in:
philippe lhardy
2015-02-22 22:06:38 +01:00
parent 4a8d555ad4
commit 130d7e61fc
3 changed files with 26 additions and 3 deletions

View File

@@ -213,7 +213,7 @@ action=initial
while [[ $action != quit ]]
do
action=$($DIALOG --menu "Ultra Light IDE" 20 80 12 readme "Read me" clean "Clean All" ant "Ant build" run "Run it" list_labs "Show Labyrinth with blender" test "Test it" code "Code" codebg "Code in background" deb "Debian package" properties "Edit Properties" create "Create a new class" quit "Quit" 3>&1 1>&2 2>&3)
action=$($DIALOG --menu "Ultra Light IDE" 20 80 12 readme "Read me" clean "Clean All" ant "Ant build" run "Run it" list_labs "Show Labyrinth with blender" test "Test it" code "Code" codebg "Code in background" deb "Debian package" properties "Edit Properties" create "Create a new class" emacsdevenv "Setup Emacs java bindings JDEE" quit "Quit" 3>&1 1>&2 2>&3)
if [[ $action == run ]]
then
@@ -263,5 +263,8 @@ do
elif [[ $action == list_labs ]]
then
list_labs ./lab
elif [[ $action == emacsdevenv ]]
then
make $action
fi
done