projectpossibility
Class COptionsDb

java.lang.Object
  extended by projectpossibility.COptionsDb

public class COptionsDb
extends java.lang.Object

An adapter layer over the J2ME RecordStore that allows users to store data values as name-value pairs. The values are persisted in the phone's setting database when the application exits and can be restored the next time the application starts.

WARNING Only a single value of ANY type can be associated with a given name. Storing a value to an existing name, will overwrite that value (regardless of type).


Constructor Summary
COptionsDb()
          Construct a default options database.
 
Method Summary
 boolean LoadBool(java.lang.String tag, boolean defaultVal)
          Load boolean value stored with name "tag" from the options database
 double LoadDouble(java.lang.String tag, double defaultVal)
          Load a double value stored with name "tag" from the options database
 int LoadInt(java.lang.String tag, int defaultVal)
          Load an integer value stored with name "tag" from the options database
 java.lang.String LoadString(java.lang.String tag, java.lang.String defaultVal)
          Load a string value stored with name "tag" from the options database
 void SaveBool(java.lang.String tag, boolean val)
          Store a boolean value into the options database
 void SaveDouble(java.lang.String tag, double val)
          Store a double value into the options database
 void SaveInt(java.lang.String tag, int val)
          Store an integer value into the options database
 void SaveString(java.lang.String tag, java.lang.String val)
          Store a string value into the options database
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

COptionsDb

public COptionsDb()
Construct a default options database. By default, a COptionsDb stores its values in the "options" RecordStore.

Method Detail

LoadBool

public boolean LoadBool(java.lang.String tag,
                        boolean defaultVal)
Load boolean value stored with name "tag" from the options database

Parameters:
tag - The "name" of the boolean value to load
defaultVal - The default value to return for the option if it is not yet stored in the db
Returns:
The value of the specified boolean type

LoadDouble

public double LoadDouble(java.lang.String tag,
                         double defaultVal)
Load a double value stored with name "tag" from the options database

Parameters:
tag - The name of the double value to load
defaultVal - The default value to return if it is not available in the db
Returns:
The value of the specified double type

LoadInt

public int LoadInt(java.lang.String tag,
                   int defaultVal)
Load an integer value stored with name "tag" from the options database

Parameters:
tag - The name of the integer value to load
defaultVal - The default value to return if it is not available in the db
Returns:
The value of the specified integer type

LoadString

public java.lang.String LoadString(java.lang.String tag,
                                   java.lang.String defaultVal)
Load a string value stored with name "tag" from the options database

Parameters:
tag - The name of the string value to load
defaultVal - The default string to return if it not available in the db
Returns:
The value of the specified string type

SaveBool

public void SaveBool(java.lang.String tag,
                     boolean val)
Store a boolean value into the options database

Parameters:
tag - The name of the value
val - The boolean value to store

SaveDouble

public void SaveDouble(java.lang.String tag,
                       double val)
Store a double value into the options database

Parameters:
tag - The name of the value
val - The double value to store

SaveInt

public void SaveInt(java.lang.String tag,
                    int val)
Store an integer value into the options database

Parameters:
tag - The name of the value
val - The integer value to store

SaveString

public void SaveString(java.lang.String tag,
                       java.lang.String val)
Store a string value into the options database

Parameters:
tag - The name of the value
val - The integer value to store