GWT 2.1.1

Uses of Interface
com.google.gwt.autobean.shared.Splittable

Packages that use Splittable
com.google.gwt.autobean.shared The AutoBean framework provides automatically-generated implementations of bean-like interfaces and a low-level serialization mechanism for those interfaces. 
com.google.gwt.requestfactory.shared Shared classes used on both the client and the server side for transmitting data between the sever and the client in JSON format. 
com.google.gwt.requestfactory.shared.messages Contains classes that define the RequestFactory wire format. 
 

Uses of Splittable in com.google.gwt.autobean.shared
 

Methods in com.google.gwt.autobean.shared that return Splittable
static Splittable AutoBeanCodex.encode(AutoBean<?> bean)
          Encodes an AutoBean.
static Splittable ValueCodex.encode(java.lang.Class<?> clazz, java.lang.Object obj)
          Encode a value object when the wire format type is known.
static Splittable ValueCodex.encode(java.lang.Object obj)
           
 Splittable Splittable.get(int index)
          Returns the nth element of a list.
 Splittable Splittable.get(java.lang.String key)
          Returns the named property.
 

Methods in com.google.gwt.autobean.shared with parameters of type Splittable
static
<T> AutoBean<T>
AutoBeanCodex.decode(AutoBeanFactory factory, java.lang.Class<T> clazz, Splittable data)
           
static
<T> T
ValueCodex.decode(java.lang.Class<T> clazz, Splittable split)
           
 

Uses of Splittable in com.google.gwt.requestfactory.shared
 

Methods in com.google.gwt.requestfactory.shared that return Splittable
 Splittable ProxyStore.get(java.lang.String key)
          Called by ProxySerializer to retrieve a value previously provided to ProxyStore.put(String, Splittable).
 Splittable DefaultProxyStore.get(java.lang.String key)
           
 

Methods in com.google.gwt.requestfactory.shared with parameters of type Splittable
 void ProxyStore.put(java.lang.String key, Splittable value)
          Called by ProxySerializer to store a value.
 void DefaultProxyStore.put(java.lang.String key, Splittable value)
           
 

Uses of Splittable in com.google.gwt.requestfactory.shared.messages
 

Methods in com.google.gwt.requestfactory.shared.messages that return types with arguments of type Splittable
 java.util.List<Splittable> ResponseMessage.getInvocationResults()
           
 java.util.List<Splittable> InvocationMessage.getParameters()
           
 java.util.Map<java.lang.String,Splittable> OperationMessage.getPropertyMap()
           
 

Method parameters in com.google.gwt.requestfactory.shared.messages with type arguments of type Splittable
 void ResponseMessage.setInvocationResults(java.util.List<Splittable> value)
           
 void InvocationMessage.setParameters(java.util.List<Splittable> value)
           
 void OperationMessage.setPropertyMap(java.util.Map<java.lang.String,Splittable> map)
           
 


GWT 2.1.1