newInterfaceList.addAll(this.remainingInterfaces);
for (int i=0; i < this.newInterfaceNames.size(); i++) {
String interfaceName = this.newInterfaceNames.get(i);
int index = cp.indexOfClassRef(interfaceName);
if (index == -1) {
index = cp.optionalAddClassRef(interfaceName);
this.createdPoolIndices.add(index);
}
newInterfaceList.add(new Interface(index, cp));
}
this.cf.setInterfaces(newInterfaceList);