It also provides a clipboard mechanism, which is an object that temporarily holds a transferable object that can be transferred between or within an application. The clipboard is typically used for copy and paste operations. Although it is possible to create a clipboard to use within an application, most applications will use the system clipboard to ensure the data can be transferred across applications running on the platform.
Modifier and Type | Interface and Description |
---|---|
public interface | ClipboardOwner
Defines the interface for classes that will provide data to a clipboard. |
public interface | FlavorListener
Defines an object which listens for |
public interface | FlavorMap
A two-way Map between "natives" (Strings), which correspond to platform-specific data formats, and "flavors" (DataFlavors), which correspond to platform-independent MIME types. |
public interface | FlavorTable
A FlavorMap which relaxes the traditional 1-to-1 restriction of a Map. |
public interface | Transferable
Defines the interface for classes that can be used to provide data for a transfer operation. |
Modifier and Type | Class and Description |
---|---|
public class | Clipboard
A class that implements a mechanism to transfer data using cut/copy/paste operations. |
public class | DataFlavor
A |
public class | FlavorEvent
|
pack-priv class | MimeType
A Multipurpose Internet Mail Extension (MIME) type, as defined in RFC 2045 and 2046. |
pack-priv class | MimeTypeParameterList
An object that encapsulates the parameter list of a MimeType as defined in RFC 2045 and 2046. |
public class | MimeTypeParseException
A class to encapsulate MimeType parsing related exceptions. |
public class | StringSelection
A |
public class | SystemFlavorMap
The SystemFlavorMap is a configurable map between "natives" (Strings), which correspond to platform-specific data formats, and "flavors" (DataFlavors), which correspond to platform-independent MIME types. |
public class | UnsupportedFlavorException
Signals that the requested data is not supported in this flavor. |