public abstract class MidiDeviceProvider extends Object
MidiDeviceProvider is a factory or provider for a particular type of MIDI device. This mechanism allows the implementation to determine how resources are managed in the creation and management of a device.
| Constructor and Description |
|---|
MidiDeviceProvider()
|
| Modifier and Type | Method and Description |
|---|---|
abstract MidiDevice |
getDevice(MidiDevice
Obtains an instance of the device represented by the info object.
|
abstract MidiDevice |
getDeviceInfo()
Obtains the set of info objects representing the device or devices provided by this
MidiDeviceProvider.
|
boolean |
isDeviceSupported(MidiDevice
Indicates whether the device provider supports the device represented by the specified device info object.
|
public boolean isDeviceSupported(MidiDevice.Info info)
info - an info object that describes the device for which support is queried
true if the specified device is supported, otherwise
false
public abstract MidiDevice.Info [] getDeviceInfo()
MidiDeviceProvider.
public abstract MidiDevicegetDevice(MidiDevice .Info info)
info - an info object that describes the desired device
IllegalArgumentException - if the info object specified does not match the info object for a device supported by this
MidiDeviceProvider.