Uses of Interface
com.googlecode.jpattern.gwt.shared.IWebResult

Packages that use IWebResult
com.googlecode.jpattern.gwt.client   
com.googlecode.jpattern.gwt.client.communication   
com.googlecode.jpattern.gwt.client.communication.direct   
com.googlecode.jpattern.gwt.client.communication.rest   
com.googlecode.jpattern.gwt.shared   
 

Uses of IWebResult in com.googlecode.jpattern.gwt.client
 

Methods in com.googlecode.jpattern.gwt.client with type parameters of type IWebResult
<T extends IWebResult>
AProxy<T>
NullServerCallService.delete(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
AProxy<T>
IServerCallService.delete(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
AProxy<T>
RestServerCallService.delete(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
AProxy<T>
NullServerCallService.get(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
AProxy<T>
IServerCallService.get(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
AProxy<T>
RestServerCallService.get(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult,Z>
AProxy<T>
NullServerCallService.post(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
<T extends IWebResult,Z>
AProxy<T>
IServerCallService.post(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
<T extends IWebResult,Z>
AProxy<T>
RestServerCallService.post(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
<T extends IWebResult,Z>
AProxy<T>
NullServerCallService.put(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
<T extends IWebResult,Z>
AProxy<T>
IServerCallService.put(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
<T extends IWebResult,Z>
AProxy<T>
RestServerCallService.put(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
 

Methods in com.googlecode.jpattern.gwt.client that return types with arguments of type IWebResult
 com.google.gwt.autobean.shared.AutoBean<IWebResult> IBeanFactory.webResult()
           
 com.google.gwt.autobean.shared.AutoBean<IWebResult> IBeanFactory.webResult(IWebResult result)
           
 

Methods in com.googlecode.jpattern.gwt.client with parameters of type IWebResult
 com.google.gwt.autobean.shared.AutoBean<IWebResult> IBeanFactory.webResult(IWebResult result)
           
 

Uses of IWebResult in com.googlecode.jpattern.gwt.client.communication
 

Classes in com.googlecode.jpattern.gwt.client.communication with type parameters of type IWebResult
 class AProxy<T extends IWebResult>
           
 class AServerCallCommand<T extends IWebResult>
           
 class NullProxy<T extends IWebResult>
           
 class ServerCallDeleteCommand<T extends IWebResult>
           
 class ServerCallGetCommand<T extends IWebResult>
           
 class ServerCallPostCommand<T extends IWebResult,Z>
           
 class ServerCallPutCommand<T extends IWebResult,Z>
           
 

Uses of IWebResult in com.googlecode.jpattern.gwt.client.communication.direct
 

Classes in com.googlecode.jpattern.gwt.client.communication.direct with type parameters of type IWebResult
 class DeleteProxy<T extends IWebResult>
           
 class GetProxy<T extends IWebResult>
           
 class PostProxy<T extends IWebResult,Z>
           
 class PutProxy<T extends IWebResult,Z>
           
 

Methods in com.googlecode.jpattern.gwt.client.communication.direct with type parameters of type IWebResult
<T extends IWebResult>
AProxy<T>
DirectServerCallService.delete(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
T
IServerCallDeleteAction.delete(Class<T> resultClass, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
T
NullServerCallGetAction.delete(Class<T> resultClass, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
AProxy<T>
DirectServerCallService.get(Class<T> resultClass, ICallbackAction<T> callbackAction, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
T
NullServerCallGetAction.get(Class<T> resultClass, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult>
T
IServerCallGetAction.get(Class<T> resultClass, String url, Map<String,String> keyValuesMap)
           
<T extends IWebResult,Z>
AProxy<T>
DirectServerCallService.post(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
<T extends IWebResult,Z>
T
IServerCallPostAction.post(Class<T> resultClass, Class<Z> dataClass, String url, Z data)
           
<T extends IWebResult,Z>
T
NullServerCallGetAction.post(Class<T> resultClass, Class<Z> dataClass, String url, Z data)
           
<T extends IWebResult,Z>
AProxy<T>
DirectServerCallService.put(Class<T> resultClass, Class<Z> dataClass, ICallbackAction<T> callbackAction, String url, Z data)
           
<T extends IWebResult,Z>
T
IServerCallPutAction.put(Class<T> resultClass, Class<Z> dataClass, String url, Z data)
           
<T extends IWebResult,Z>
T
NullServerCallGetAction.put(Class<T> resultClass, Class<Z> dataClass, String url, Z data)
           
 

Uses of IWebResult in com.googlecode.jpattern.gwt.client.communication.rest
 

Classes in com.googlecode.jpattern.gwt.client.communication.rest with type parameters of type IWebResult
 class DeleteProxy<T extends IWebResult>
           
 class GetProxy<T extends IWebResult>
           
 class PostProxy<T extends IWebResult,Z>
           
 class ProxyRequestCallback<T extends IWebResult>
           
 class PutProxy<T extends IWebResult,Z>
           
 

Uses of IWebResult in com.googlecode.jpattern.gwt.shared
 

Classes in com.googlecode.jpattern.gwt.shared that implement IWebResult
 class WebResult
           
 



Copyright © 2011. All Rights Reserved.