jdk/src/java.desktop/share/classes/javax/sound/midi/MidiDeviceTransmitter.java
changeset 26037 508779ce6619
parent 26003 d630c97424bd
parent 25859 3317bb8137f4
child 47195 b309b58eb190
equal deleted inserted replaced
25992:e9b05e933ddd 26037:508779ce6619
     1 /*
     1 /*
     2  * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 package javax.sound.midi;
    26 package javax.sound.midi;
    27 
    27 
    28 
       
    29 /**
    28 /**
    30  * <p>{@code MidiDeviceTransmitter} is a {@code Transmitter} which represents
    29  * {@code MidiDeviceTransmitter} is a {@code Transmitter} which represents a
    31  * a MIDI input connector of a {@code MidiDevice}
    30  * MIDI input connector of a {@code MidiDevice} (see
    32  * (see {@link MidiDevice#getTransmitter()}).
    31  * {@link MidiDevice#getTransmitter()}).
    33  *
    32  *
    34  * @since 1.7
    33  * @since 1.7
    35  */
    34  */
    36 public interface MidiDeviceTransmitter extends Transmitter {
    35 public interface MidiDeviceTransmitter extends Transmitter {
    37 
    36 
    38     /**
    37     /**
    39      * Obtains a MidiDevice object which is an owner of this Transmitter.
    38      * Obtains a MidiDevice object which is an owner of this Transmitter.
       
    39      *
    40      * @return a MidiDevice object which is an owner of this Transmitter
    40      * @return a MidiDevice object which is an owner of this Transmitter
    41      */
    41      */
    42     public MidiDevice getMidiDevice();
    42     MidiDevice getMidiDevice();
    43 }
    43 }