Example usage for Java javax.sound.midi MidiDevice fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Closes the device, indicating that the device should now release any system resources it is using. |
Info | getDeviceInfo() Obtains information about the device, including its Java class and Strings containing its name, vendor, and description. |
int | getMaxReceivers() Obtains the maximum number of MIDI IN connections available on this MIDI device for receiving MIDI data. |
int | getMaxTransmitters() Obtains the maximum number of MIDI OUT connections available on this MIDI device for transmitting MIDI data. |
long | getMicrosecondPosition() Obtains the current time-stamp of the device, in microseconds. |
Receiver | getReceiver() Obtains a MIDI IN receiver through which the MIDI device may receive MIDI data. |
List | getReceivers() Returns all currently active, non-closed receivers connected with this MidiDevice . |
Transmitter | getTransmitter() Obtains a MIDI OUT connection from which the MIDI device will transmit MIDI data. |
List | getTransmitters() Returns all currently active, non-closed transmitters connected with this MidiDevice . |
boolean | isOpen() Reports whether the device is open. |
void | open() Opens the device, indicating that it should now acquire any system resources it requires and become operational. |