public class WebServiceGenaratorFactory {
public static WebServiceGenarator createWebServiceGenarator(WebServiceContext wscontext){
if(wscontext.getWrapInfo().getWrapperStyle() == WrapperConstants.STYLE_RPC)
return new RPCWebServiceGenarator(wscontext);
else if(wscontext.getWrapInfo().getWrapperStyle() == WrapperConstants.STYLE_DOCUMENT)
return new DocLitWebServiceGenarator(wscontext);
else
return null;
}