JDK 11 jdk.unsupported.desktop.jmod - Unsupported Desktop Module

JDK 11 jdk.unsupported.desktop.jmod is the JMOD file for JDK 11 Unsupported Desktop module.

JDK 11 Unsupported Desktop module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.unsupported.desktop.jmod.

JDK 11 Unsupported Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.

JDK 11 Unsupported Desktop module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.unsupported.desktop.

You can click and view the content of each source code file in the list below.

✍: FYIcenter

jdk/swing/interop/DropTargetContextWrapper.java

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

package jdk.swing.interop;

import java.awt.dnd.peer.DropTargetContextPeer;
import java.awt.dnd.DropTarget;
import java.awt.dnd.InvalidDnDOperationException;
import java.awt.dnd.DropTargetContext;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import sun.awt.AWTAccessor;

/**
 * This class provides a wrapper over inner class DropTargetContextPeerProxy
 * which implements jdk internal java.awt.dnd.peer.DropTargetContextPeer interface
 * and provides APIs to be used by FX swing interop to access and use
 * DropTargetContextPeer APIs.
 *
 * @since 11
 */
public abstract class DropTargetContextWrapper {

    private DropTargetContextPeerProxy dcp;
    public DropTargetContextWrapper() {
        dcp = new DropTargetContextPeerProxy();
    }

    public void setDropTargetContext(DropTargetContext dtc,
                                         DropTargetContextWrapper dtcpw) {
        AWTAccessor.getDropTargetContextAccessor().
                    setDropTargetContextPeer(dtc, dtcpw.dcp);
    }

    public void reset(DropTargetContext dtc) {
        AWTAccessor.getDropTargetContextAccessor().reset(dtc);
    }

    public abstract void setTargetActions(int actions);

    public abstract int getTargetActions();

    public abstract DropTarget getDropTarget();

    public abstract DataFlavor[] getTransferDataFlavors();

    public abstract Transferable getTransferable() throws InvalidDnDOperationException;

    public abstract boolean isTransferableJVMLocal();

    public abstract void acceptDrag(int dragAction);

    public abstract void rejectDrag();

    public abstract void acceptDrop(int dropAction);

    public abstract void rejectDrop();

    public abstract void dropComplete(boolean success);

    private class DropTargetContextPeerProxy implements DropTargetContextPeer {

        public void setTargetActions(int actions) {
            DropTargetContextWrapper.this.setTargetActions(actions);
        }

        public int getTargetActions() {
            return DropTargetContextWrapper.this.getTargetActions();
        }

        public DropTarget getDropTarget() {
            return DropTargetContextWrapper.this.getDropTarget();
        }

        public DataFlavor[] getTransferDataFlavors() {
            return DropTargetContextWrapper.this.getTransferDataFlavors();
        }

        public Transferable getTransferable()
                throws InvalidDnDOperationException {
            return DropTargetContextWrapper.this.getTransferable();
        }

        public boolean isTransferableJVMLocal() {
            return DropTargetContextWrapper.this.isTransferableJVMLocal();
        }

        public void acceptDrag(int dragAction) {
            DropTargetContextWrapper.this.acceptDrag(dragAction);
        }

        public void rejectDrag() {
            DropTargetContextWrapper.this.rejectDrag();
        }

        public void acceptDrop(int dropAction) {
            DropTargetContextWrapper.this.acceptDrop(dropAction);
        }

        public void rejectDrop() {
            DropTargetContextWrapper.this.rejectDrop();
        }

        public void dropComplete(boolean success) {
            DropTargetContextWrapper.this.dropComplete(success);
        }
    }
}

jdk/swing/interop/DropTargetContextWrapper.java

 

Or download all of them as a single archive file:

File name: jdk.unsupported.desktop-11.0.1-src.zip
File size: 7362 bytes
Release date: 2018-11-04
Download 

 

JDK 11 jdk.xml.dom.jmod - XML DOM Module

JDK 11 jdk.unsupported.jmod - Unsupported Module

Download and Use JDK 11

⇑⇑ FAQ for JDK (Java Development Kit)

2022-06-28, 6711👍, 3💬