Re: [mdr-users] Lookup problems again
Frédéric Jouault <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.mdr.user |
|---|---|
| Message-ID | <[email protected]> |
Hi, > My attempt to run MDR on eclipse was partially successful. I am able > to run a plugin > that reads UML files in the eclipse workbench mode (ie, development > mode), but when I install the plugin in production mode, I get a nasty > lookup problem like that: > > java.lang.Error: Unresolved compilation problem: > Syntax error on tokens, delete these tokens > [...] > What is the token error ? Eclipse can compile java files containing syntax and semantic errors. The resulting class files contain bytecodes that throw "java.lang.Error: Unresolved compilation problem". This lets you launch programs which are not fully correct. It does not correct errors though. This feature might be useful in some cases. However, I advise you to look at the compilation errors (some white on red crosses on the GUI) before launching your code. This is probably a very simple syntax error. Regards, Frédéric Jouault