You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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 ) ;
}



  • No labels