// Check the interface operations.
for(int i = 0; i < numInterfaceOperations; i++)
{
if(!usedInterfaceOperations.contains(interfaceOperations[i]))
{
errorReporter.reportError(new ErrorLocatorImpl(), "Binding-1045", new Object[]{bindingName, interfaceOperations[i].getName()}, ErrorReporter.SEVERITY_ERROR);
allInterfaceOperationsHaveBinding = false;
}
}
return allInterfaceOperationsHaveBinding;
}