if (interf.methods().length > 0) {
// See if any of my superTypes implement it.
ReferenceBinding superclass = type.binding.superclass();
if (superclass == null
|| !superclass.implementsInterface(interf, true)) {
String intfName = CharOperation.toString(interf.compoundName);
state.addJsoInterface(type, cud, intfName);
}
}
}