jdk/src/java.desktop/share/classes/javax/sound/midi/MidiDeviceTransmitter.java
changeset 47195 b309b58eb190
parent 26037 508779ce6619
equal deleted inserted replaced
47194:c045b3720b1e 47195:b309b58eb190
     1 /*
     1 /*
     2  * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2010, 2017, 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
    33  * @since 1.7
    33  * @since 1.7
    34  */
    34  */
    35 public interface MidiDeviceTransmitter extends Transmitter {
    35 public interface MidiDeviceTransmitter extends Transmitter {
    36 
    36 
    37     /**
    37     /**
    38      * Obtains a MidiDevice object which is an owner of this Transmitter.
    38      * Obtains a {@code MidiDevice} object which is an owner of this
       
    39      * {@code Transmitter}.
    39      *
    40      *
    40      * @return a MidiDevice object which is an owner of this Transmitter
    41      * @return a {@code MidiDevice} object which is an owner of this
       
    42      *         {@code Transmitter}
    41      */
    43      */
    42     MidiDevice getMidiDevice();
    44     MidiDevice getMidiDevice();
    43 }
    45 }