Monday, December 3, 2007

Java Mandatory Package Struture!

Can you import a class/interface of a default package from any specific packages.

For example, if you have class DefInterface defined without a package and if you want to use this interface in a class org.nava.DefImpl, can below code will work?

package org.nava;
import DefInterface;
class DefImpl implements DefInterface{

}

This doesnot work! Either you have complete package structure or no packages.

Just curious was it ever possible in java?

No comments: