*/
private MethodInfo analyzeMethod(Method method) {
List<TypeInfo> inInfos = getInInfo(method);
TypeInfo outInfo = getOutInfo(method);
WebMethod webMethod = method.getAnnotation(WebMethod.class);
String soapAction = (webMethod != null) ? webMethod.action() : null;
return new MethodInfo(method.getName(), soapAction,
inInfos.toArray(new TypeInfo[inInfos.size()]), outInfo);
}
private void analyzeServiceInterface(Class<?> serviceInterface) {