Possible Duplicate: How to access java-classes in the default-package?
I am using Eclipse 3.5 and I have created a project with so
From the Java language spec:
It is a compile time error to import a type from the unnamed package.
You'll have to access the class via reflection or some other indirect method.