WIMM Labs


com.wimm.framework.os
Class Beeper.Beep

java.lang.Object
  extended by com.wimm.framework.os.Beeper.Beep
Enclosing class:
Beeper

public static final class Beeper.Beep
extends Object

Describes a single beep. Beeps can be played using the Beeper or added to a Beeper.Sequence.

Since:
WIMM SDK 1.0.3

Field Summary
 int duration
          The length of the beep in milliseconds.
 int pitch
          The tone of the beep.
 
Constructor Summary
Beeper.Beep(int duration, int pitch)
          The default constructor.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

duration

public int duration
The length of the beep in milliseconds. Values range from 0 to 5000.

Since:
WIMM SDK 1.0.3

pitch

public int pitch
The tone of the beep. Values range from 0 to 255. Low=0, High=255.

Since:
WIMM SDK 1.0.3
Constructor Detail

Beeper.Beep

public Beeper.Beep(int duration,
                   int pitch)
The default constructor.

Parameters:
duration - The length of the beep in milliseconds. Values range from 0 to 5000.
pitch - The tone of the beep. Values range from 0 to 255. Low=0, High=255.
Since:
WIMM SDK 1.0.3

WIMM Labs