projectpossibility
Class COptionScreen

java.lang.Object
  extended by javax.microedition.lcdui.Displayable
      extended by javax.microedition.lcdui.Screen
          extended by javax.microedition.lcdui.Form
              extended by projectpossibility.COptionScreen

public class COptionScreen
extends javax.microedition.lcdui.Form

The primary options screen for adjusting AudioGuardian settings. Implements functionality to set the alert threshold and enable/disable detection of specific sounds.


Constructor Summary
COptionScreen(java.lang.String[] builtinSounds)
          Construct a new COptionsScreen with the specified set of builtin sounds
 
Method Summary
 int getAlertThreshold()
          Retrieve the user's preferred alert threshold.
 boolean getSoundChoice(int index)
          Determine whether the user has enabled or disabled a specific sound.
 void setAlertThreshold(int val)
          Set the threshold and which an alert should occur - should be between 0 and 10
 void setSoundChoice(int index, boolean value)
          Set the enable/disable status of a specific alert sound.
 
Methods inherited from class javax.microedition.lcdui.Form
append, append, append, delete, deleteAll, get, getHeight, getWidth, insert, set, setItemStateListener, size
 
Methods inherited from class javax.microedition.lcdui.Displayable
addCommand, getTicker, getTitle, isShown, removeCommand, setCommandListener, setTicker, setTitle
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

COptionScreen

public COptionScreen(java.lang.String[] builtinSounds)
Construct a new COptionsScreen with the specified set of builtin sounds

Parameters:
builtinSounds - The list of sounds to display in the enable/disable dialog
Method Detail

setAlertThreshold

public void setAlertThreshold(int val)
Set the threshold and which an alert should occur - should be between 0 and 10

Parameters:
val - The threshold at which to alert

getAlertThreshold

public int getAlertThreshold()
Retrieve the user's preferred alert threshold.

Returns:
The alert treshold (a value between 0 and 10)

setSoundChoice

public void setSoundChoice(int index,
                           boolean value)
Set the enable/disable status of a specific alert sound.

Parameters:
index - The index of the sound to alert on
value - true if the sound should be enabled, false otherwise

getSoundChoice

public boolean getSoundChoice(int index)
Determine whether the user has enabled or disabled a specific sound.

Parameters:
index - The index of the sound to query
Returns:
true if the sound should be enabled, false otherwise