return all;
} else {
Iterator superIterator =
this.superInterfaces.values().iterator();
Iterator operationIterator;
WSDLInterface superInterface;
WSDLOperation superInterfaceOperation;
Iterator thisIterator = all.values().iterator();
WSDLOperation thisOperation;
boolean tobeAdded = false;
while (superIterator.hasNext()) {
superInterface = (WSDLInterface) superIterator.next();
operationIterator =
superInterface.getAllOperations().values().iterator();
while (operationIterator.hasNext()) {
superInterfaceOperation =
(WSDLOperation) operationIterator.next();
tobeAdded = true;
while (thisIterator.hasNext()) {