javax.sound.midi
Class VoiceStatus

java.lang.Object
  extended by javax.sound.midi.VoiceStatus

public class VoiceStatus
extends Object

Objects of this type define the status of a Synthesizer voice.

Since:
1.3

Field Summary
 boolean active
          True if this voice is processing a MIDI note.
 int bank
          The bank of the voice when active.
 int channel
          The channel for this voice when active.
 int note
          The note for this voice when active.
 int program
          The program for this voice when active.
 int volume
          The volume for this voice when active.
 
Constructor Summary
VoiceStatus()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

active

public boolean active
True if this voice is processing a MIDI note.


channel

public int channel
The channel for this voice when active.


bank

public int bank
The bank of the voice when active.


program

public int program
The program for this voice when active.


note

public int note
The note for this voice when active.


volume

public int volume
The volume for this voice when active.

Constructor Detail

VoiceStatus

public VoiceStatus()