Uses of Class
org.strutsme.common.SafeHashtable

Packages that use SafeHashtable
org.strutsme.client This package contains the RemoteExecutor which allows to call an action at the server with the executeAtServer() method. 
org.strutsme.common.serialization Implementation of the serialization. 
org.strutsme.wishlist.client.adapter Contains all classes around the adapters. 
org.strutsme.wishlist.client.control The classes of this package are responsible to control the workflow and the state of the application. 
org.strutsme.wishlist.client.forms Implements the viewpart of the midlet. 
org.strutsme.wishlist.common.dto DTOs for the data exchange between server and client. 
 

Uses of SafeHashtable in org.strutsme.client
 

Methods in org.strutsme.client that return SafeHashtable
static SafeHashtable RemoteExecutor.executeAtServer(java.lang.String actionName, java.util.Hashtable actionParameter, java.lang.String session, SafeHashtable parameters)
          Calls an action at the server and returns the result (values of the formbean).
static SafeHashtable RemoteExecutor.executeAtServer(java.lang.String actionName, SafeHashtable parameters)
          Wrapper around RemoteExecutor.executeAtServer(String, Hashtable, String, SafeHashtable).
 SafeHashtable ServerResultWrapper.getServerErrors()
          Returns the server errors if there are any.
 SafeHashtable ServerResultWrapper.getServerMessages()
          Returns the server messages if there are any.
 SafeHashtable ServerResultWrapper.getServerResult()
          Returns the data for the last server form.
 

Methods in org.strutsme.client with parameters of type SafeHashtable
static SafeHashtable RemoteExecutor.executeAtServer(java.lang.String actionName, java.util.Hashtable actionParameter, java.lang.String session, SafeHashtable parameters)
          Calls an action at the server and returns the result (values of the formbean).
static SafeHashtable RemoteExecutor.executeAtServer(java.lang.String actionName, SafeHashtable parameters)
          Wrapper around RemoteExecutor.executeAtServer(String, Hashtable, String, SafeHashtable).
 

Constructors in org.strutsme.client with parameters of type SafeHashtable
ServerResultWrapper(SafeHashtable serverResult)
          Constructor.
 

Uses of SafeHashtable in org.strutsme.common.serialization
 

Methods in org.strutsme.common.serialization with parameters of type SafeHashtable
abstract  void SerializationBase.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map.
abstract  void SerializationBase.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map.
 

Uses of SafeHashtable in org.strutsme.wishlist.client.adapter
 

Methods in org.strutsme.wishlist.client.adapter that return SafeHashtable
 SafeHashtable WishAdapter.getErrors()
          gets errormessages from the last action.
 SafeHashtable WishOnlineAdapter.getErrors()
          gets errormessages from the last action.
 SafeHashtable WishAdapter.getMessages()
          gets information about the last action.
 SafeHashtable WishOnlineAdapter.getMessages()
          gets information about the last action.
 

Constructors in org.strutsme.wishlist.client.adapter with parameters of type SafeHashtable
WishOnlineRunner(WishOnlineAdapter adapter, java.lang.String action, java.util.Hashtable requestParams, SafeHashtable formData)
          Constructor.
 

Uses of SafeHashtable in org.strutsme.wishlist.client.control
 

Methods in org.strutsme.wishlist.client.control that return SafeHashtable
 SafeHashtable WishEditor.getErrors()
           
 SafeHashtable WishEditor.getMessages()
           
 

Uses of SafeHashtable in org.strutsme.wishlist.client.forms
 

Methods in org.strutsme.wishlist.client.forms with parameters of type SafeHashtable
static void FormTools.showMessages(javax.microedition.lcdui.Form form, SafeHashtable messages, java.lang.String marker)
          generates for each message in messages a StringItem and appends it to the form.
 

Uses of SafeHashtable in org.strutsme.wishlist.common.dto
 

Methods in org.strutsme.wishlist.common.dto with parameters of type SafeHashtable
 void BaseDtoImpl.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map. mwolff: checklipse warning is ok here.
 void UserDtoImpl.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map. mwolff: checklipse warning is ok here.
 void WishDtoImpl.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map. mwolff: checklipse warning is ok here.
 void BaseDtoImpl.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map. mwolff: checklipse warning is ok here.
 void UserDtoImpl.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map. Also it has to set the version under the Constants.VERSION key. mwolff: checklipse warning is ok here.
 void WishDtoImpl.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map. Also it has to set the version under the Constants.VERSION key. mwolff: checklipse warning is ok here.