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

JDK 17 java.datatransfer.jmod - Data Transfer Module

JDK 17 JMod/Module Files

⇑⇑ FAQ for JDK (Java Development Kit) 17

2023-09-16, ≈442🔥, 0💬