< prev index next >

src/java.desktop/share/classes/javax/sound/midi/MidiSystem.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 72,88 **** * chosen among the available devices. The syntax of the properties file is * specified in {@link Properties#load(InputStream) Properties.load}. The * following table lists the available property keys and which methods consider * them: * ! * <table border=0> * <caption>MIDI System Property Keys</caption> * <tr> * <th>Property Key</th> * <th>Interface</th> * <th>Affected Method</th> * </tr> * <tr> * <td>{@code javax.sound.midi.Receiver}</td> * <td>{@link Receiver}</td> * <td>{@link #getReceiver}</td> * </tr> --- 72,91 ---- * chosen among the available devices. The syntax of the properties file is * specified in {@link Properties#load(InputStream) Properties.load}. The * following table lists the available property keys and which methods consider * them: * ! * <table class="striped"> * <caption>MIDI System Property Keys</caption> + * <thead> * <tr> * <th>Property Key</th> * <th>Interface</th> * <th>Affected Method</th> * </tr> + * </thead> + * <tbody> * <tr> * <td>{@code javax.sound.midi.Receiver}</td> * <td>{@link Receiver}</td> * <td>{@link #getReceiver}</td> * </tr>
*** 99,108 **** --- 102,112 ---- * <tr> * <td>{@code javax.sound.midi.Transmitter}</td> * <td>{@link Transmitter}</td> * <td>{@link #getTransmitter}</td> * </tr> + * </tbody> * </table> * * The property value consists of the provider class name and the device name, * separated by the hash mark (&quot;#&quot;). The provider class name is the * fully-qualified name of a concrete
< prev index next >