java.awt.datatransfer
Class StringSelection

java.lang.Object
  |
  +--java.awt.datatransfer.StringSelection
All Implemented Interfaces:
ClipboardOwner, Transferable

public class StringSelection
extends Object
implements Transferable, ClipboardOwner

Safe: A Transferable which implements the capability required to transfer a String. This Transferable properly supports DataFlavor.stringFlavor and all equivalent flavors. Support for DataFlavor.plainTextFlavor and all equivalent flavors is deprecated. No other DataFlavors are supported.

See Also:
java.awt.datatransfer.DataFlavor.stringFlavor, java.awt.datatransfer.DataFlavor.plainTextFlavor

Field Summary
private  String data
           
private static DataFlavor[] flavors
           
private static int PLAIN_TEXT
           
private static int STRING
           
 
Constructor Summary
StringSelection(String data)
          Enabled: Creates a Transferable capable of transferring the specified String.
 
Method Summary
 Object getTransferData(DataFlavor flavor)
          Enabled: Returns the Transferable's data in the requested DataFlavor if possible.
 DataFlavor[] getTransferDataFlavors()
          Enabled: Returns an array of flavors in which this Transferable can provide the data.
 boolean isDataFlavorSupported(DataFlavor flavor)
          Enabled: Returns whether the requested flavor is supported by this Transferable.
 void lostOwnership(Clipboard clipboard, Transferable contents)
          Enabled:
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STRING

private static final int STRING

PLAIN_TEXT

private static final int PLAIN_TEXT

flavors

private static final DataFlavor[] flavors

data

private String data
Constructor Detail

StringSelection

public StringSelection(String data)
Enabled: Creates a Transferable capable of transferring the specified String.

Method Detail

getTransferDataFlavors

public DataFlavor[] getTransferDataFlavors()
Enabled: Returns an array of flavors in which this Transferable can provide the data. DataFlavor.stringFlavor is properly supported. Support for DataFlavor.plainTextFlavor is deprecated.

Specified by:
getTransferDataFlavors in interface Transferable
Returns:
an array of length two, whose elements are DataFlavor. stringFlavor and DataFlavor.plainTextFlavor

isDataFlavorSupported

public boolean isDataFlavorSupported(DataFlavor flavor)
Enabled: Returns whether the requested flavor is supported by this Transferable.

Specified by:
isDataFlavorSupported in interface Transferable
Parameters:
flavor - the requested flavor for the data
Returns:
true if flavor is equal to DataFlavor.stringFlavor or DataFlavor.plainTextFlavor; false if flavor is not one of the above flavors
Throws:
NullPointerException - if flavor is null

getTransferData

public Object getTransferData(DataFlavor flavor)
                       throws UnsupportedFlavorException,
                              IOException
Enabled: Returns the Transferable's data in the requested DataFlavor if possible. If the desired flavor is DataFlavor.stringFlavor, or an equivalent flavor, the String representing the selection is returned. If the desired flavor is DataFlavor.plainTextFlavor , or an equivalent flavor, a Reader is returned. Note: The behavior of this method for DataFlavor.plainTextFlavor and equivalent DataFlavors is inconsistent with the definition of DataFlavor.plainTextFlavor.

Specified by:
getTransferData in interface Transferable
Parameters:
flavor - the requested flavor for the data
Returns:
the data in the requested flavor, as outlined above
Throws:
UnsupportedFlavorException - if the requested data flavor is not equivalent to either DataFlavor.stringFlavor or DataFlavor.plainTextFlavor
IOException - if an IOException occurs while retrieving the data. By default, StringSelection never throws this exception, but a subclass may.
NullPointerException - if flavor is null
See Also:
java.io.Reader

lostOwnership

public void lostOwnership(Clipboard clipboard,
                          Transferable contents)
Enabled:

Specified by:
lostOwnership in interface ClipboardOwner
Parameters:
clipboard - the clipboard that is no longer owned
contents - the contents which this owner had placed on the clipboard


comments?