Rob,
You mentioned that "Nested interfaces are implicitly static; unlike a nested class, which can be static or not, interfaces can ONLY be static when declared inside another class/interface."
As what I know, interfaces are implicitly abstract. How can the interface be static when it's abstract? Abstract and static don't go together, am I right?
Choi Nang