Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » "Missing code implementation in the compiler" Error Message
"Missing code implementation in the compiler" Error Message [message #60754] Mon, 02 May 2005 16:57
Eclipse UserFriend
Originally posted by: Abel.donotspam.com

While trying to execute the following java snippet on a Scrapbook page,
I got the "Missing code implementation in the compiler" error. I was
then successful in running it within a main method in a class. Can
anybody tell me if this is a bug, or whether there are some restrictions
with the code that can be executed on a scrapbook, etc ...?

class Base {

public void run() {
}

}

final int wasRun[] = new int[1];
wasRun[0] = 0;
System.out.println(String.valueOf(wasRun[0]));
Base b = new Base() {

public void run() {
wasRun[0] = 1;
}

};
b.run();
System.out.println(String.valueOf(wasRun[0]));
Previous Topic:Still Can't Run SWT App
Next Topic:How do I shrink the fonts in menus and panes?
Goto Forum:
  


Current Time: Sat Nov 09 02:49:07 GMT 2024

Powered by FUDForum. Page generated in 0.07056 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top