com.sun.webkit.Pasteboard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjfx-78-backport Show documentation
Show all versions of openjfx-78-backport Show documentation
This is a backport of OpenJFX 8 to run on Java 7.
The newest version!
/*
* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
*/
package com.sun.webkit;
import com.sun.webkit.graphics.WCImageFrame;
public interface Pasteboard {
public String getPlainText();
public String getHtml();
public void writePlainText(String text);
public void writeSelection(boolean canSmartCopyOrDelete, String text, String html);
public void writeImage(WCImageFrame img);
public void writeUrl(String url, String markup);
}