All Packages Class Hierarchy This Package Previous Next Index
Object | +----StringSelection | +----com.symantec.itools.vcafe.openapi.datatransfer.TransferableProxy
StringSelection
functionality to any Transferable
object.
The system clipboard essentially ignores non StringSelection
transferables,
so we wrap them in order to force the system clipboard to freshen/clear Visual Cafe's clipboard.
TransferableProxy
, wrapping the given Transferable
in
one with string flavors as well.
Transferable
object that this TransferableProxy
wraps.
DataFlavor
objects indicating the formats the data
can be provided in.
public TransferableProxy(Transferable t)
TransferableProxy
, wrapping the given Transferable
in
one with string flavors as well.
Transferable
object to wrap.
public java.awt.datatransfer.Transferable getProxiedTransferable()
Transferable
object that this TransferableProxy
wraps.
Transferable
object.
public synchronized java.lang.Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
DataFlavor.getRepresentationClass()
)
of the flavor.
public synchronized java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
DataFlavor
objects indicating the formats the data
can be provided in. The array should be ordered according to preference
for providing the data (from most richly descriptive to least descriptive).
The StringSelection
flavors are at the end of the array.
public boolean isDataFlavorSupported(DataFlavor flavor)
true
if the DataFlavor
is supported, false
otherwise.
All Packages Class Hierarchy This Package Previous Next Index