Package | Description |
---|---|
com.sun.javafx.tk | |
com.sun.javafx.tk.quantum | |
com.sun.javafx.webkit | |
javafx.embed.swing |
Provides the set of classes to use JavaFX inside Swing applications.
|
javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
Modifier and Type | Field and Description |
---|---|
private java.util.Map<DataFormat,java.lang.Object> |
LocalClipboard.values |
Modifier and Type | Method and Description |
---|---|
java.util.Set<DataFormat> |
TKClipboard.getContentTypes()
Gets the set of DataFormat types on this Clipboard instance which have
associated data registered on the clipboard.
|
java.util.Set<DataFormat> |
LocalClipboard.getContentTypes() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
TKClipboard.getContent(DataFormat dataFormat)
Returns the content stored in this clipboard of the given type, or null
if there is no content with this type.
|
java.lang.Object |
LocalClipboard.getContent(DataFormat dataFormat) |
boolean |
TKClipboard.hasContent(DataFormat dataFormat)
Tests whether there is any content on this clipboard of the given DataFormat type.
|
boolean |
LocalClipboard.hasContent(DataFormat dataFormat) |
Modifier and Type | Field and Description |
---|---|
private java.util.List<Pair<DataFormat,java.lang.Object>> |
QuantumClipboard.dataCache
Cache of the data used for dragboard between setting them and flushing
them to system dragboard.
|
Modifier and Type | Method and Description |
---|---|
java.util.Set<DataFormat> |
QuantumClipboard.getContentTypes() |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
QuantumClipboard.getContent(DataFormat dataFormat) |
boolean |
QuantumClipboard.hasContent(DataFormat dataFormat) |
Modifier and Type | Field and Description |
---|---|
private static DataFormat |
UIClientImpl.DF_DRAG_IMAGE |
private static DataFormat |
UIClientImpl.DF_DRAG_IMAGE_OFFSET |
Modifier and Type | Method and Description |
---|---|
private static DataFormat |
UIClientImpl.getDataFormat(java.lang.String mimeType) |
Modifier and Type | Method and Description |
---|---|
(package private) static DataFormat |
DataFlavorUtils.getDataFormat(java.awt.datatransfer.DataFlavor flavor) |
Modifier and Type | Method and Description |
---|---|
(package private) static java.awt.datatransfer.DataFlavor |
DataFlavorUtils.getDataFlavor(DataFormat format) |
(package private) static java.lang.String |
DataFlavorUtils.getMimeType(DataFormat format) |
Modifier and Type | Field and Description |
---|---|
private static DataFormat |
DataFormat.DRAG_IMAGE
Data format used internally, represents dragged image.
|
private static DataFormat |
DataFormat.DRAG_IMAGE_OFFSET
Data format used internally, represents offset in the dragged image.
|
static DataFormat |
DataFormat.FILES
Represents a List of Files.
|
static DataFormat |
DataFormat.HTML
Represents an HTML formatted string.
|
static DataFormat |
DataFormat.IMAGE
A special platform specific image type, such as is commonly used
on the clipboard and interoperates widely with other applications.
|
static DataFormat |
DataFormat.PLAIN_TEXT
Represents a plain text string.
|
static DataFormat |
DataFormat.RTF
Represents an RTF formatted string
|
static DataFormat |
DataFormat.URL
Represents a URL, encoded as a String
|
Modifier and Type | Field and Description |
---|---|
private static WeakReferenceQueue<DataFormat> |
DataFormat.DATA_FORMAT_LIST
A static cache of all DataFormats created and currently in use.
|
Modifier and Type | Method and Description |
---|---|
static DataFormat |
DataFormat.lookupMimeType(java.lang.String mimeType)
Looks for the DataFormat which has been previously created with
the given mime type as one of its ids.
|
Modifier and Type | Method and Description |
---|---|
java.util.Set<DataFormat> |
Clipboard.getContentTypes()
Gets the set of DataFormat types on this Clipboard instance which have
associated data registered on the clipboard.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
Clipboard.getContent(DataFormat dataFormat)
Returns the content stored in this clipboard of the given type, or null
if there is no content with this type.
|
(package private) java.lang.Object |
Clipboard.getContentImpl(DataFormat dataFormat)
Getting content overridable by internal subclasses.
|
(package private) java.lang.Object |
Dragboard.getContentImpl(DataFormat dataFormat) |
boolean |
Clipboard.hasContent(DataFormat dataFormat)
Tests whether there is any content on this clipboard of the given DataFormat type.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Clipboard.setContent(java.util.Map<DataFormat,java.lang.Object> content)
Puts content onto the clipboard.
|