Hi,
in our current project we have the following interface situation:
--
package x;
public interface Outer {
// ...
public static interface Inner {
// ...
} // public static interface Inner
} // public interface Outer
--
To use the inner interface, the following import statement is
necessary:
import x.Outer.Inner;
IDEA highlights the outer class (Outer in this example) as an error
(Cannot resolve Outer), which is, although non-usual, not the case,
both javac and jikes compile.
Peter
_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list