I've noticed there are some special ways to qualify an entity in Java:
Object o = new Outer().new Inner();
In this case, we are qualifying the Inner class with the Outer class, so we only need to import the Outer class:
import mypackage.Outer;
Are there any other cases like this? (That is, where an unusual qualification occurs - by unusual I mean not: fullQualifier.identifier).
I'm excluding the case of the automatic imports (java.lang, primitive types, etc.)
import mypackage.Outer.Inner;wouldn't be valid in this case. – Oli Charlesworth Jan 16 '11 at 12:36import mypackage.Outer.Inner;, although not invalid, it is marked as unused. – John Assymptoth Jan 16 '11 at 12:55