public void validate(Object target, WodenContext wodenCtx) throws WSDLException {
Interface interfac = (Interface)target;
Interface[] extendedInterfaces = interfac.getExtendedInterfaces();
if(containsInterface(interfac, extendedInterfaces)) {
try {
wodenCtx.getErrorReporter().reportError(new ErrorLocatorImpl(), ID , new Object[]{interfac.getName()}, ErrorReporter.SEVERITY_ERROR);
}catch(WSDLException e) {
//TODO: Log problem reporting error.
}
}
}