JDK 11 java.desktop.jmod - Desktop Module

JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module.

JDK 11 Desktop module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.desktop.jmod.

JDK 11 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.

JDK 11 Desktop module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.desktop.

You can click and view the content of each source code file in the list below.

✍: FYIcenter

javax/sound/midi/ControllerEventListener.java

/*
 * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

package javax.sound.midi;

import java.util.EventListener;

/**
 * The {@code ControllerEventListener} interface should be implemented by
 * classes whose instances need to be notified when a {@link Sequencer} has
 * processed a requested type of MIDI control-change event. To register a
 * {@code ControllerEventListener} object to receive such notifications, invoke
 * the
 * {@link Sequencer#addControllerEventListener(ControllerEventListener, int[])
 * addControllerEventListener} method of {@code Sequencer}, specifying the types
 * of MIDI controllers about which you are interested in getting control-change
 * notifications.
 *
 * @author Kara Kytle
 * @see MidiChannel#controlChange(int, int)
 */
public interface ControllerEventListener extends EventListener {

    /**
     * Invoked when a {@link Sequencer} has encountered and processed a
     * control-change event of interest to this listener. The event passed in is
     * a {@code ShortMessage} whose first data byte indicates the controller
     * number and whose second data byte is the value to which the controller
     * was set.
     *
     * @param  event the control-change event that the sequencer encountered in
     *         the sequence it is processing
     * @see Sequencer#addControllerEventListener(ControllerEventListener, int[])
     * @see MidiChannel#controlChange(int, int)
     * @see ShortMessage#getData1
     * @see ShortMessage#getData2
     */
    void controlChange(ShortMessage event);
}

javax/sound/midi/ControllerEventListener.java

 

Or download all of them as a single archive file:

File name: java.desktop-11.0.1-src.zip
File size: 7974380 bytes
Release date: 2018-11-04
Download 

 

JDK 11 java.instrument.jmod - Instrument Module

JDK 11 java.datatransfer.jmod - Data Transfer Module

Download and Use JDK 11

⇑⇑ FAQ for JDK (Java Development Kit)

2022-08-06, 194880👍, 5💬