The DataContentHandler interface is implemented by objects that can
be used to extend the capabilities of the DataHandler's implementation
of the Transferable interface. Through DataContentHandlers
the framework can be extended to convert streams in to objects, and
to write objects to streams.
Applications don't generally call the methods in DataContentHandlers directly. Instead, an application calls the equivalent methods in DataHandler. The DataHandler will attempt to find an appropriate DataContentHandler that corresponds to its MIME type using the current DataContentHandlerFactory. The DataHandler then calls through to the methods in the DataContentHandler.
java.lang.Object
getContent(DataSource ds)
java.lang.Object
getTransferData(java.awt.datatransfer.DataFlavor df,
DataSource ds)
java.awt.datatransfer.DataFlavor[]
getTransferDataFlavors()
void
writeTo(java.lang.Object obj,
java.lang.String mimeType,
java.io.OutputStream os)
public java.awt.datatransfer.DataFlavor[] getTransferDataFlavors()
public java.lang.Object getTransferData(java.awt.datatransfer.DataFlavor df, DataSource ds) throws java.awt.datatransfer.UnsupportedFlavorException, java.io.IOException
df
- The DataFlavor representing the requested type.ds
- The DataSource representing the data to be converted.public java.lang.Object getContent(DataSource ds) throws java.io.IOException
getTransferDataFlavors
method.ds
- The DataSource representing the data to be converted.public void writeTo(java.lang.Object obj, java.lang.String mimeType, java.io.OutputStream os) throws java.io.IOException
obj
- The object to be converted.mimeType
- The requested MIME type of the resulting byte stream.os
- The output stream into which to write the converted
byte stream.