Is there any difference between using
public ClassName extends some.package.Class implements another.package.Interface {}
and
import some.package.Class;
import another.package.Interface;
public ClassName extends Class implements Interface {}
when talking about performance, compatibility, etc..