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/laf/ScreenMenuItem.java
/* * Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.apple.laf; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.plaf.ComponentUI; import sun.awt.AWTAccessor; import sun.lwawt.macosx.CMenuItem; @SuppressWarnings("serial") // JDK implementation class final class ScreenMenuItem extends MenuItem implements ActionListener, ComponentListener, ScreenMenuPropertyHandler { ScreenMenuPropertyListener fListener; JMenuItem fMenuItem; ScreenMenuItem(final JMenuItem mi) { super(mi.getText()); fMenuItem = mi; setEnabled(fMenuItem.isEnabled()); final ComponentUI ui = fMenuItem.getUI(); if (ui instanceof ScreenMenuItemUI) { ((ScreenMenuItemUI)ui).updateListenersForScreenMenuItem(); // SAK: Not calling this means that mouse and mouse motion listeners don't get // installed. Not a problem because the menu manager handles tracking for us. } } public void addNotify() { super.addNotify(); fMenuItem.addComponentListener(this); fListener = new ScreenMenuPropertyListener(this); fMenuItem.addPropertyChangeListener(fListener); addActionListener(this); setEnabled(fMenuItem.isEnabled()); // can't setState or setAccelerator or setIcon till we have a peer setAccelerator(fMenuItem.getAccelerator()); final String label = fMenuItem.getText(); if (label != null) { setLabel(label); } final Icon icon = fMenuItem.getIcon(); if (icon != null) { this.setIcon(icon); } final String tooltipText = fMenuItem.getToolTipText(); if (tooltipText != null) { this.setToolTipText(tooltipText); } if (fMenuItem instanceof JRadioButtonMenuItem) { final ComponentUI ui = fMenuItem.getUI(); if (ui instanceof ScreenMenuItemUI) { ((ScreenMenuItemUI)ui).updateListenersForScreenMenuItem(); } } } public void removeNotify() { super.removeNotify(); removeActionListener(this); fMenuItem.removePropertyChangeListener(fListener); fListener = null; fMenuItem.removeComponentListener(this); } static void syncLabelAndKS(MenuItem menuItem, String label, KeyStroke ks) { Object peer = AWTAccessor.getMenuComponentAccessor().getPeer(menuItem); if (!(peer instanceof CMenuItem)) { //Is it possible? return; } final CMenuItem cmi = (CMenuItem) peer; if (ks == null) { cmi.setLabel(label); } else { cmi.setLabel(label, ks.getKeyChar(), ks.getKeyCode(), ks.getModifiers()); } } @Override public synchronized void setLabel(final String label) { syncLabelAndKS(this, label, fMenuItem.getAccelerator()); } @Override public void setAccelerator(final KeyStroke ks) { syncLabelAndKS(this, fMenuItem.getText(), ks); } public void actionPerformed(final ActionEvent e) { fMenuItem.doClick(0); // This takes care of all the different events } /** * Invoked when the component's size changes. */ public void componentResized(final ComponentEvent e) {} /** * Invoked when the component's position changes. */ public void componentMoved(final ComponentEvent e) {} /** * Invoked when the component has been made visible. * See componentHidden - we should still have a MenuItem * it just isn't inserted */ public void componentShown(final ComponentEvent e) { setVisible(true); } /** * Invoked when the component has been made invisible. * MenuComponent.setVisible does nothing, * so we remove the ScreenMenuItem from the ScreenMenu * but leave it in fItems */ public void componentHidden(final ComponentEvent e) { setVisible(false); } public void setVisible(final boolean b) { // Tell our parent to add/remove us -- parent may be nil if we aren't set up yet. // Hang on to our parent final MenuContainer parent = getParent(); if (parent != null) { ((ScreenMenuPropertyHandler)parent).setChildVisible(fMenuItem, b); } } public void setToolTipText(final String text) { Object peer = AWTAccessor.getMenuComponentAccessor().getPeer(this); if (!(peer instanceof CMenuItem)) return; final CMenuItem cmi = (CMenuItem)peer; cmi.setToolTipText(text); } public void setIcon(final Icon i) { Object peer = AWTAccessor.getMenuComponentAccessor().getPeer(this); if (!(peer instanceof CMenuItem)) return; final CMenuItem cmi = (CMenuItem)peer; Image img = null; if (i != null) { if (i.getIconWidth() > 0 && i.getIconHeight() > 0) { img = AquaIcon.getImageForIcon(i); } } cmi.setImage(img); } // we have no children public void setChildVisible(final JMenuItem child, final boolean b) {} // only check and radio items can be indeterminate public void setIndeterminate(boolean indeterminate) { } }
⏎ com/apple/laf/ScreenMenuItem.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, ≈157🔥, 0💬
Popular Posts:
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.1? The if you...
JDK 11 jdk.javadoc.jmod is the JMOD file for JDK 11 Java Document tool, which can be invoked by the ...
JDK 17 jdk.jdi.jmod is the JMOD file for JDK 17 JDI (Java Debug Interface) tool. JDK 17 JDI tool com...
What Is commons-io-2.11.jar? commons-io-2.11.jar is the JAR file for Commons IO 2.5, which is a libr...
The Web Services Description Language for Java Toolkit (WSDL4J), Release 1.6.2, allows the creation,...