At 02:05 AM 11/14/00 +0100, you wrote:
>I've got a little problem. I tried to install emacs, jde etc. on my Win2000
>Desktop-PC
>
>emacs 20.7 for WinNT is working, JDK 1.3 is working, I installed the stuff
>for JDE inkl. Semantic, Speedbar, elib and Cygwin (all newest versions). I
>followed the skript at http://sunsite.dk/jde/ for the configuration. And now
>finally everything is starting without error.
>Now I tried to compile a simple "Hello World!" program and oooops, this
>appeared: Compilation exited abnormally with code 128 at Tue Nov 14 01:29:04
>
>and if I tried after that to run the application, then the following error
>appeared:
>java.lang.NoClassDefFoundError: test
>Exception in thread "main"
>Process test exited abnormally with code 1
>
>I've saved the file test.java under the home directory, where also the files
>.emacs and .bashrc are situated
>
>***************************************************************
>These are the configurations of .emacs:
>
>(setq debug-on-error t)
>
>(setq load-path
> (nconc
> '(
> "c:/arbeitsprogramme/emacs/site"
> )
> load-path))
>
>(add-to-list 'load-path (expand-file-name
>"c:/arbeitsprogramme/emacs/site/JDE/lisp"))
>(add-to-list 'load-path (expand-file-name
>"c:/arbeitsprogramme/emacs/site/Semantic"))
>(add-to-list 'load-path (expand-file-name
>"c:/arbeitsprogramme/emacs/site/Speedbar"))
>(add-to-list 'load-path (expand-file-name
>"c:/arbeitsprogramme/emacs/site/elib"))
>
>
> ;; If you want Emacs to defer loading the JDE until you open a
>;; Java file, edit the following line
>(setq defer-loading-jde nil)
>;; to read:
>;;
>;; (setq defer-loading-jde t)
>;;
>
>(if defer-loading-jde
> (progn
> (autoload 'jde-mode "jde" "JDE mode." t)
> (setq auto-mode-alist
> (append
> '(("\\.java\\'" . jde-mode))
> auto-mode-alist)))
>
>(require 'jde))
>
>
>(pc-selection-mode)
>(load "cua-mode")
>(CUA-mode t)
>
>(setq binary-process-input t)
>(setq shell-file-name "bash")
>(setq shell-command-switch "-c")
>(setenv "SHELL" shell-file-name)
>(setq explicit-shell-file-name shell-file-name)
>(setq explicit-sh-args '("-login" "-i"))
>(if (boundp 'w32-quote-process-args)
> (setq w32-quote-process-args ?\")) ;; Include only for MS Windows.
>
>****************************************************************************
>*
>and these of .bashrc:
>
>export PATH=".:${PATH}"
>export HOME=/java
>export TMOUT=3600
>export HISTCONTROL=ignoredups
>export FIGNORE='~:.o'
>export PS1='//\h/.../\W \$ '
>
># home key
>bind '"\e[1~":beginning-of-line'
>
># del key
>bind '"\e[3~":delete-char'
>
># end key
>bind '"\e[4~":end-of-line'
>
># pgup key
>bind '"\e[5~":history-search-forward'
>
># pgdn key
>bind '"\e[6~":history-search-backward'
>
>alias cp='cp -r'
>alias rm='rm -r'
>alias ls='ls -F'
>alias dir='ls -laF'
>alias edit='notepad'
>
>******************************************************
>Do you have an idea what the cause could be for this error!?!
The error message means that the compiler could not find the class on the
classpath.
> Please send me
>a mail with some understandable tipps for a beginner.
1) Read the JDE User's Guide. If there is something in it that you do not
understand, please let me know so that I can improve it.
2) Include the compile buffer when asking for help on compile problems so
that we can see the compile command that was issued.
3) You should always use the JDE->Help->Submit Problem Report command to
prepare a snapshot of your system and send the snapshot along with the
request for help. Unfortunately, the problem report does not include the
compile buffer. I plan to fix this in an upcoming release.
- Paul
------------------------------------------------------------
HOW TO ASK FOR TECH SUPPORT
When requesting technical support, please generate a problem report, using
the JDE->Help->Submit Problem Report command, and submit this report along
with your help request. The Submit Problem Report command is designed to
gather all the information that someone who does not have direct access to
your system might need to solve your problem. It saves people who want to
help you from having to waste time trying to dig relevant information out
of you. Please note that if you do not get a response to a question, it may
be because you did not provide sufficient information to solve the problem.
Filing a problem report is the best way to ensure that you get a response.
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
JDE website: http://sunsite.auc.dk/jde/
JDE mailing list archive:
http://www.mail-archive.com/[email protected]/maillist.html