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 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/apple/eawt/FullScreenHandler.java
/*
* Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.apple.eawt;
import com.apple.eawt.event.FullScreenEvent;
import java.awt.*;
import java.util.*;
import java.util.List;
import javax.swing.RootPaneContainer;
import sun.awt.SunToolkit;
import java.lang.annotation.Native;
final class FullScreenHandler {
private static final String CLIENT_PROPERTY = "com.apple.eawt.event.internalFullScreenHandler";
@Native static final int FULLSCREEN_WILL_ENTER = 1;
@Native static final int FULLSCREEN_DID_ENTER = 2;
@Native static final int FULLSCREEN_WILL_EXIT = 3;
@Native static final int FULLSCREEN_DID_EXIT = 4;
// installs a private instance of the handler, if necessary
static void addFullScreenListenerTo(final RootPaneContainer window, final FullScreenListener listener) {
final Object value = window.getRootPane().getClientProperty(CLIENT_PROPERTY);
if (value instanceof FullScreenHandler) {
((FullScreenHandler)value).addListener(listener);
return;
}
if (value != null) return; // some other garbage is in our client property
final FullScreenHandler newHandler = new FullScreenHandler();
newHandler.addListener(listener);
window.getRootPane().putClientProperty(CLIENT_PROPERTY, newHandler);
}
// asks the installed FullScreenHandler to remove it's listener (does not uninstall the FullScreenHandler)
static void removeFullScreenListenerFrom(final RootPaneContainer window, final FullScreenListener listener) {
final Object value = window.getRootPane().getClientProperty(CLIENT_PROPERTY);
if (!(value instanceof FullScreenHandler)) return;
((FullScreenHandler)value).removeListener(listener);
}
static FullScreenHandler getHandlerFor(final RootPaneContainer window) {
final Object value = window.getRootPane().getClientProperty(CLIENT_PROPERTY);
if (value instanceof FullScreenHandler) return (FullScreenHandler)value;
return null;
}
// called from native
static void handleFullScreenEventFromNative(final Window window, final int type) {
if (!(window instanceof RootPaneContainer)) return; // handles null
SunToolkit.executeOnEventHandlerThread(window, new Runnable() {
public void run() {
final FullScreenHandler handler = getHandlerFor((RootPaneContainer)window);
if (handler != null) handler.notifyListener(new FullScreenEvent(window), type);
}
});
}
final List<FullScreenListener> listeners = new LinkedList<FullScreenListener>();
FullScreenHandler() { }
void addListener(final FullScreenListener listener) {
listeners.add(listener);
}
void removeListener(final FullScreenListener listener) {
listeners.remove(listener);
}
void notifyListener(final FullScreenEvent e, final int op) {
for (final FullScreenListener listener : listeners) {
switch (op) {
case FULLSCREEN_WILL_ENTER:
listener.windowEnteringFullScreen(e);
return;
case FULLSCREEN_DID_ENTER:
listener.windowEnteredFullScreen(e);
return;
case FULLSCREEN_WILL_EXIT:
listener.windowExitingFullScreen(e);
return;
case FULLSCREEN_DID_EXIT:
listener.windowExitedFullScreen(e);
return;
}
}
}
}
⏎ com/apple/eawt/FullScreenHandler.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, ≈442🔥, 0💬
Popular Posts:
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto modu...
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-...
maven-core-3.5.4.jar is the JAR file for Apache Maven 3.5.4 Core module. Apache Maven is a software ...
JBrowser Source Code Files are provided in the source package file. You can download JBrowser source...