public boolean isWebMethod(MethodDeclaration method) {
return true;
}
};
WebMethod privateMethod = null;
WebMethod protectedMethod = null;
WebMethod excludedMethod = null;
WebMethod encodedMethod = null;
WebMethod nonVoidOneWayMethod = null;
WebMethod exceptionThrowingOneWayMethod = null;
WebMethod headerCollectionParam = null;
WebMethod headerCollectionReturn = null;
WebMethod rpcBareMethod = null;
WebMethod docBare2ParamMethod = null;
WebMethod docBare2OutputMethod = null;
WebMethod docBareWithHeadersMethod = null;
WebMethod docBareVoidMethod = null;
WebMethod docBareVoid2OutputMethod = null;
WebMethod rpcCollectionParam = null;
WebMethod invalidInOutParameter = null;
Collection<WebMethod> webMethods = ei.getWebMethods();
for (WebMethod webMethod : webMethods) {
if ("privateMethod".equals(webMethod.getSimpleName())) {
privateMethod = webMethod;
}