Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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/beans/WeakCache.java
/* * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.beans; import java.lang.ref.Reference; import java.lang.ref.WeakReference; import java.util.Map; import java.util.WeakHashMap; /** * A hashtable-based cache with weak keys and weak values. * An entry in the map will be automatically removed * when its key is no longer in the ordinary use. * A value will be automatically removed as well * when it is no longer in the ordinary use. * * @since 1.7 * * @author Sergey A. Malenkov */ public final class WeakCache<K, V> { private final Map<K, Reference<V>> map = new WeakHashMap<K, Reference<V>>(); /** * Returns a value to which the specified {@code key} is mapped, * or {@code null} if this map contains no mapping for the {@code key}. * * @param key the key whose associated value is returned * @return a value to which the specified {@code key} is mapped */ public V get(K key) { Reference<V> reference = this.map.get(key); if (reference == null) { return null; } V value = reference.get(); if (value == null) { this.map.remove(key); } return value; } /** * Associates the specified {@code value} with the specified {@code key}. * Removes the mapping for the specified {@code key} from this cache * if it is present and the specified {@code value} is {@code null}. * If the cache previously contained a mapping for the {@code key}, * the old value is replaced by the specified {@code value}. * * @param key the key with which the specified value is associated * @param value the value to be associated with the specified key */ public void put(K key, V value) { if (value != null) { this.map.put(key, new WeakReference<V>(value)); } else { this.map.remove(key); } } /** * Removes all of the mappings from this cache. */ public void clear() { this.map.clear(); } }
⏎ com/sun/beans/WeakCache.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, ≈330🔥, 5💬
Popular Posts:
xml-commons Resolver Source Code Files are provided in the source package file, xml-commons-resolver...
JDK 17 java.sql.rowset.jmod is the JMOD file for JDK 17 SQL Rowset module. JDK 17 SQL Rowset module ...
What Is jaxb-api-2.1.6.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Java ...
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...
JDK 6 tools.jar is the JAR file for JDK 6 tools. It contains Java classes to support different JDK t...