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 17 java.desktop.jmod - Desktop Module
JDK 17 java.desktop.jmod is the JMOD file for JDK 17 Desktop module.
JDK 17 Desktop module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.desktop.jmod.
JDK 17 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Desktop module source code files are stored in \fyicenter\jdk-17.0.5\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/ModelIdentifier.java
/* * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.media.sound; /** * This class stores the identity of source and destinations in connection * blocks, see ModelConnectionBlock. * * @author Karl Helgason */ public final class ModelIdentifier { /* * Object Variable * ------ -------- * * // INPUT parameters * noteon keynumber 7 bit midi value * velocity 7 bit midi vale * on 1 or 0 * * midi pitch 14 bit midi value * channel_pressure 7 bit midi value * poly_pressure 7 bit midi value * * midi_cc 0 (midi control #0 7 bit midi value * 1 (midi control #1 7 bit midi value * ... * 127 (midi control #127 7 bit midi value * * midi_rpn 0 (midi rpn control #0) 14 bit midi value * 1 (midi rpn control #1) 14 bit midi value * .... * * // DAHDSR envelope generator * eg (null) * delay timecent * attack timecent * hold timecent * decay timecent * sustain 0.1 % * release timecent * * // Low frequency oscillirator (sine wave) * lfo (null) * delay timcent * freq cent * * // Resonance LowPass Filter 6dB slope * filter (null) (output/input) * freq cent * q cB * * // The oscillator with preloaded wavetable data * osc (null) * pitch cent * * // Output mixer pins * mixer gain cB * pan 0.1 % * reverb 0.1 % * chorus 0.1 % * */ private String object = null; private String variable = null; private int instance = 0; public ModelIdentifier(String object) { this.object = object; } public ModelIdentifier(String object, int instance) { this.object = object; this.instance = instance; } public ModelIdentifier(String object, String variable) { this.object = object; this.variable = variable; } public ModelIdentifier(String object, String variable, int instance) { this.object = object; this.variable = variable; this.instance = instance; } public int getInstance() { return instance; } public void setInstance(int instance) { this.instance = instance; } public String getObject() { return object; } public void setObject(String object) { this.object = object; } public String getVariable() { return variable; } public void setVariable(String variable) { this.variable = variable; } @Override public int hashCode() { int hashcode = instance; if(object != null) hashcode |= object.hashCode(); if(variable != null) hashcode |= variable.hashCode(); return hashcode; } @Override public boolean equals(Object obj) { if (!(obj instanceof ModelIdentifier)) return false; ModelIdentifier mobj = (ModelIdentifier)obj; if ((object == null) != (mobj.object == null)) return false; if ((variable == null) != (mobj.variable == null)) return false; if (mobj.getInstance() != getInstance()) return false; if (!(object == null || object.equals(mobj.object))) return false; if (!(variable == null || variable.equals(mobj.variable))) return false; return true; } @Override public String toString() { if (variable == null) { return object + "[" + instance + "]"; } else { return object + "[" + instance + "]" + "." + variable; } } }
⏎ com/sun/media/sound/ModelIdentifier.java
Or download all of them as a single archive file:
File name: java.desktop-17.0.5-src.zip File size: 9152233 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.instrument.jmod - Instrument Module
2023-09-16, 62296👍, 0💬
Popular Posts:
JDK 11 jdk.crypto.cryptoki.jmod is the JMOD file for JDK 11 Crypto Cryptoki module. JDK 11 Crypto KI...
JDK 11 java.naming.jmod is the JMOD file for JDK 11 Naming module. JDK 11 Naming module compiled cla...
Rhino JavaScript Java Library is an open-source implementation of JavaScript written entirely in Jav...
Apache Log4j 1.2 Bridge allows applications coded to use Log4j 1.2 API to use Log4j 2 instead. Bytec...
What Is commons-net-ftp-2.0.jar? commons-net-ftp-2.0.jar is the JAR file for Apache Commons Net FTP ...