You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
687 B
42 lines
687 B
/*
|
|
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.sound.midi;
|
|
|
|
/**
|
|
* <p>{@code MidiDeviceReceiver} is a {@code Receiver} which represents
|
|
* a MIDI input connector of a {@code MidiDevice}
|
|
* (see {@link MidiDevice#getReceiver()}).
|
|
*
|
|
* @since 1.7
|
|
*/
|
|
public interface MidiDeviceReceiver extends Receiver {
|
|
/**
|
|
* Obtains a MidiDevice object which is an owner of this Receiver.
|
|
* @return a MidiDevice object which is an owner of this Receiver
|
|
*/
|
|
public MidiDevice getMidiDevice();
|
|
}
|