Searched defs:intfDecl (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java522 InterfaceDeclaration intfDecl = getEndpointInterfaceDecl(webService.endpointInterface(), classDecl);
523 if (!classImplementsSEI(classDecl, intfDecl))
541 InterfaceDeclaration intfDecl) {
543 if (interfaceType.getDeclaration().equals(intfDecl))
547 for (MethodDeclaration method : intfDecl.getMethods()) {
556 builder.onError(method.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_METHOD_NOT_IMPLEMENTED(intfDecl.getSimpleName(), classDecl.getSimpleName(), method));
591 protected boolean methodsAreLegal(InterfaceDeclaration intfDecl) { argument
593 for (MethodDeclaration method : intfDecl.getMethods()) {
594 if (!isLegalMethod(method, intfDecl))
597 for (InterfaceType superIntf : intfDecl
540 classImplementsSEI(ClassDeclaration classDecl, InterfaceDeclaration intfDecl) argument
[all...]

Completed in 36 milliseconds