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 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/java/swing/plaf/motif/MotifMenuUI.java
/* * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.java.swing.plaf.motif; import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import javax.swing.plaf.*; import javax.swing.border.*; import javax.swing.plaf.basic.*; import javax.swing.plaf.basic.BasicMenuUI; /** * A Motif {@literal L&F} implementation of MenuUI. * * @author Georges Saab * @author Rich Schiavi */ public class MotifMenuUI extends BasicMenuUI { public static ComponentUI createUI( JComponent x ) { return new MotifMenuUI(); } // These should not be necessary because BasicMenuUI does this, // and this class overrides createChangeListener. // protected void installListeners() { // super.installListeners(); // changeListener = createChangeListener(menuItem); // menuItem.addChangeListener(changeListener); // } // // protected void uninstallListeners() { // super.uninstallListeners(); // menuItem.removeChangeListener(changeListener); // } protected ChangeListener createChangeListener(JComponent c) { return new MotifChangeHandler((JMenu)c, this); } private boolean popupIsOpen(JMenu m,MenuElement me[]) { int i; JPopupMenu pm = m.getPopupMenu(); for(i=me.length-1;i>=0;i--) { if(me[i].getComponent() == pm) return true; } return false; } protected MouseInputListener createMouseInputListener(JComponent c) { return new MouseInputHandler(); } public class MotifChangeHandler extends ChangeHandler { public MotifChangeHandler(JMenu m, MotifMenuUI ui) { super(m, ui); } public void stateChanged(ChangeEvent e) { JMenuItem c = (JMenuItem)e.getSource(); if (c.isArmed() || c.isSelected()) { c.setBorderPainted(true); // c.repaint(); } else { c.setBorderPainted(false); } super.stateChanged(e); } } protected class MouseInputHandler implements MouseInputListener { public void mouseClicked(MouseEvent e) {} public void mousePressed(MouseEvent e) { MenuSelectionManager manager = MenuSelectionManager.defaultManager(); JMenu menu = (JMenu)e.getComponent(); if(menu.isEnabled()) { if(menu.isTopLevelMenu()) { if(menu.isSelected()) { manager.clearSelectedPath(); } else { Container cnt = menu.getParent(); if(cnt != null && cnt instanceof JMenuBar) { MenuElement me[] = new MenuElement[2]; me[0]=(MenuElement)cnt; me[1]=menu; manager.setSelectedPath(me); } } } MenuElement path[] = getPath(); if (path.length > 0) { MenuElement newPath[] = new MenuElement[path.length+1]; System.arraycopy(path,0,newPath,0,path.length); newPath[path.length] = menu.getPopupMenu(); manager.setSelectedPath(newPath); } } } public void mouseReleased(MouseEvent e) { MenuSelectionManager manager = MenuSelectionManager.defaultManager(); JMenuItem menuItem = (JMenuItem)e.getComponent(); Point p = e.getPoint(); if(!(p.x >= 0 && p.x < menuItem.getWidth() && p.y >= 0 && p.y < menuItem.getHeight())) { manager.processMouseEvent(e); } } public void mouseEntered(MouseEvent e) {} public void mouseExited(MouseEvent e) {} public void mouseDragged(MouseEvent e) { MenuSelectionManager.defaultManager().processMouseEvent(e); } public void mouseMoved(MouseEvent e) { } } }
⏎ com/sun/java/swing/plaf/motif/MotifMenuUI.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, 160151👍, 5💬
Popular Posts:
How to download and install JDK (Java Development Kit) 1.4? If you want to write Java applications, ...
How to download and install Apache XMLBeans-2.6.0.zip? If you want to try the XMLBeans Java library,...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
What Is activation.jar? I heard it's related to JAF (JavaBeans Activation Framework) 1.0.2? The if y...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...