Page History
The JSMStorage interface is a hash table that allows object to be stored and retrieved.
The key is always trimmed and uppercase.
public interface JSMStorage
...
{
...
public void clear () ;
...
public void remove ( String key ) ;
...
public Object getObject ( String key ) ;
...
public boolean putObject ( String key, Object value ) ;
...
public boolean containsKey ( String key ) ;
...
}