Is the following ok? (keep in mind that I didn't write the bodies of the classes and I also didn't write the interfaces ;-))
abstract class SuperClass implements SuperInterface
class SubClass extends SuperClass implements SubInterface
Or is this generally considered bad practice?
What made me wonder is, that the following didn't work:
List<SubInterface> myList;
...
for(SuperInterface si : myList) {
...
}
SubInterfacedefine here? DoesSubInterfaceextendsSuperInterface? In theory I think he wanted to write that but forgot, as he says it's aSubInterfaceofSuperInterface, so it isn't needed to implement that interface as it's already done implicitly. – SHiRKiT Jan 19 '12 at 14:10