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/AquaScrollRegionBorder.java

/*
 * Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

package com.apple.laf;

import java.awt.Component;
import java.awt.Graphics;

import javax.swing.JComponent;

import apple.laf.JRSUIState;
import apple.laf.JRSUIConstants.Focused;
import apple.laf.JRSUIConstants.State;
import apple.laf.JRSUIConstants.Widget;

import com.apple.laf.AquaUtilControlSize.SizeDescriptor;
import com.apple.laf.AquaUtilControlSize.SizeVariant;
import com.apple.laf.AquaUtils.RecyclableSingletonFromDefaultConstructor;

public class AquaScrollRegionBorder extends AquaBorder {
    private static final RecyclableSingletonFromDefaultConstructor<AquaScrollRegionBorder> instance = new RecyclableSingletonFromDefaultConstructor<AquaScrollRegionBorder>(AquaScrollRegionBorder.class);

    public static AquaScrollRegionBorder getScrollRegionBorder() {
        return instance.get();
    }

    public AquaScrollRegionBorder() {
        super(new SizeDescriptor(new SizeVariant().alterMargins(2, 2, 2, 2)));
    }

    @Override
    protected AquaPainter<? extends JRSUIState> createPainter() {
        JRSUIState state =  JRSUIState.getInstance();
        state.set(Widget.FRAME_LIST_BOX);
        return AquaPainter.<JRSUIState>create(state, 7, 7, 3, 3, 3, 3);
    }

    public void paintBorder(final Component c, final Graphics g, final int x, final int y, final int width, final int height) {
        final State state = getState((JComponent)c);
        painter.state.set(state);
        painter.state.set(isFocused(c) && state == State.ACTIVE ? Focused.YES : Focused.NO);
        painter.paint(g, c, x, y, width, height);
    }

    protected State getState(final JComponent c) {
        if (!AquaFocusHandler.isActive(c)) return State.INACTIVE;
        if (!c.isEnabled()) return State.DISABLED;
        return State.ACTIVE;
    }
}

com/apple/laf/AquaScrollRegionBorder.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, 33138👍, 0💬