Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
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
⏎ com/sun/media/sound/AudioSynthesizer.java
/* * Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.media.sound; import java.util.Map; import javax.sound.midi.MidiSystem; import javax.sound.midi.MidiUnavailableException; import javax.sound.midi.Synthesizer; import javax.sound.sampled.AudioFormat; import javax.sound.sampled.AudioInputStream; import javax.sound.sampled.SourceDataLine; /** * {@code AudioSynthesizer} is a {@code Synthesizer} * which renders it's output audio into {@code SourceDataLine} * or {@code AudioInputStream}. * * @see MidiSystem#getSynthesizer * @see Synthesizer * * @author Karl Helgason */ public interface AudioSynthesizer extends Synthesizer { /** * Obtains the current format (encoding, sample rate, number of channels, * etc.) of the synthesizer audio data. * * <p>If the synthesizer is not open and has never been opened, it returns * the default format. * * @return current audio data format * @see AudioFormat */ AudioFormat getFormat(); /** * Gets information about the possible properties for the synthesizer. * * @param info a proposed list of tag/value pairs that will be sent on open. * @return an array of {@code AudioSynthesizerPropertyInfo} objects * describing possible properties. This array may be an empty array if * no properties are required. */ AudioSynthesizerPropertyInfo[] getPropertyInfo(Map<String, Object> info); /** * Opens the synthesizer and starts rendering audio into * {@code SourceDataLine}. * * <p>An application opening a synthesizer explicitly with this call * has to close the synthesizer by calling {@link #close}. This is * necessary to release system resources and allow applications to * exit cleanly. * * <p>Note that some synthesizers, once closed, cannot be reopened. * Attempts to reopen such a synthesizer will always result in * a {@code MidiUnavailableException}. * * @param line which {@code AudioSynthesizer} writes output audio into. * If {@code line} is null, then line from system default mixer is used. * @param info a {@code Map<String,Object>} object containing * properties for additional configuration supported by synthesizer. * If {@code info} is null then default settings are used. * * @throws MidiUnavailableException thrown if the synthesizer cannot be * opened due to resource restrictions. * @throws SecurityException thrown if the synthesizer cannot be * opened due to security restrictions. * * @see #close * @see #isOpen */ void open(SourceDataLine line, Map<String, Object> info) throws MidiUnavailableException; /** * Opens the synthesizer and renders audio into returned * {@code AudioInputStream}. * * <p>An application opening a synthesizer explicitly with this call * has to close the synthesizer by calling {@link #close}. This is * necessary to release system resources and allow applications to * exit cleanly. * * <p>Note that some synthesizers, once closed, cannot be reopened. * Attempts to reopen such a synthesizer will always result in * a {@code MidiUnavailableException}. * * @param targetFormat specifies the {@code AudioFormat} * used in returned {@code AudioInputStream}. * @param info a {@code Map<String,Object>} object containing * properties for additional configuration supported by synthesizer. * If {@code info} is null then default settings are used. * * @throws MidiUnavailableException thrown if the synthesizer cannot be * opened due to resource restrictions. * @throws SecurityException thrown if the synthesizer cannot be * opened due to security restrictions. * * @see #close * @see #isOpen */ AudioInputStream openStream(AudioFormat targetFormat, Map<String, Object> info) throws MidiUnavailableException; }
⏎ com/sun/media/sound/AudioSynthesizer.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
2022-08-06, 160076👍, 5💬
Popular Posts:
JDK 11 jdk.xml.dom.jmod is the JMOD file for JDK 11 XML DOM module. JDK 11 XML DOM module compiled c...
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...
JDK 11 jdk.aot.jmod is the JMOD file for JDK 11 Ahead-of-Time (AOT) Compiler module. JDK 11 AOT Comp...
Java Advanced Imaging (JAI) is a Java platform extension API that provides a set of object-oriented ...
What Is ojdbc8.jar for Oracle 12c R2? ojdbc8.jar for Oracle 12c R2 is the JAR files of ojdbc.jar, JD...