for (JavaInterface intf : javaModel.getInterfaces().values()) {
if (!interfaces.contains(intf)) {
intf.annotate(new WebServiceAnnotator());
intf.annotate(new XmlSeeAlsoAnnotator(context.get(ClassCollector.class)));
if (serviceInfo.getBindings().size() > 0) {
intf.annotate(new BindingAnnotator());
}
}
}
return javaModel;
}