Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
5k views

How to import a class from default package

Possible Duplicate: How to access java-classes in the default-package? I am using Eclipse 3.5 and I have created a project with some package structure along with the default package. I have one ...
8
votes
3answers
15k views

How to access java-classes in the default-package?

I'm working now together with others in a grails project. I have to write some Java-classes. But I need access to an searchable object created with groovy. It seems, that this object has to be placed ...
3
votes
3answers
266 views

What is the default package in which my classes are put if I don't specify it?

Let's assume I have a file named Main.java with the following code: public class Main { public static void main(String[] args) { System.out.println("Hello world"); } } Is it put in ...
-1
votes
1answer
143 views

I get a class not found exception when i rename the package from “default package”

I get a class not found exception when i rename the package from "default package" in java. When i run the code within the default package, the code works fine but when i paste the code into a new ...