Uses of Interface
org.directwebremoting.io.RawData

Packages that use RawData
org.directwebremoting.datasync   
org.directwebremoting.extend This 'extend' package contains many of the classes that are interesting to very advanced DWR users, and people embedding or extending DWR. 
org.directwebremoting.guice This package provides support for Guice dependency injection in DWR-based web applications. 
org.directwebremoting.impl   
org.directwebremoting.io   
 

Uses of RawData in org.directwebremoting.datasync
 

Methods in org.directwebremoting.datasync with parameters of type RawData
 void AbstractPerXStoreProvider.put(java.lang.String itemId, RawData rawData)
           
 void AbstractStoreProvider.put(java.lang.String itemId, RawData rawData)
           
 void StoreProvider.put(java.lang.String itemId, RawData rawData)
          Similar to Map.put(K, V) in adding items to a Store.
 

Uses of RawData in org.directwebremoting.extend
 

Classes in org.directwebremoting.extend that implement RawData
 class RealRawData
          Sometimes DWR can't know at runtime the type of the inbound data, this class allows us to defer conversion until we know more about the type we should be converting to.
 

Methods in org.directwebremoting.extend with parameters of type RawData
<T> T
ConverterManager.convertInbound(java.lang.Class<T> paramType, RawData rawData)
          RawData is something of a special case for conversion - it's designed to be converted outside of the normal automatic conversion process when the type can't be known until later.
 

Uses of RawData in org.directwebremoting.guice
 

Methods in org.directwebremoting.guice with parameters of type RawData
<T> T
InternalConverterManager.convertInbound(java.lang.Class<T> paramType, RawData data)
           
 

Uses of RawData in org.directwebremoting.impl
 

Methods in org.directwebremoting.impl with parameters of type RawData
<T> T
DefaultConverterManager.convertInbound(java.lang.Class<T> paramType, RawData rawData)
           
 

Uses of RawData in org.directwebremoting.io
 

Methods in org.directwebremoting.io that return RawData
 RawData ItemUpdate.getNewValue()
          Accessor for the value for the attribute that we want to change on the Object with the ID given in itemId.
 

Constructors in org.directwebremoting.io with parameters of type RawData
ItemUpdate(java.lang.String itemId, java.lang.String attribute, RawData newValue)
          Create an Item with its ID and data.
 


Copyright ยจ 2008