Uses of Interface
javax.activation.DataSource

Uses of DataSource in javax.activation
 

Classes in javax.activation that implement DataSource
 class FileDataSource
          The FileDataSource class implements a simple DataSource object that encapsulates a file.
 class URLDataSource
          The URLDataSource class provides an object that wraps a URL object in a DataSource interface.
 

Methods in javax.activation that return DataSource
 DataSource DataHandler.getDataSource()
          Return the DataSource associated with this instance of DataHandler.
 

Methods in javax.activation with parameters of type DataSource
 java.lang.Object DataContentHandler.getTransferData(java.awt.datatransfer.DataFlavor df, DataSource ds)
          Returns an object which represents the data to be transferred.
 java.lang.Object DataContentHandler.getContent(DataSource ds)
          Return an object representing the data in its most preferred form.
 

Constructors in javax.activation with parameters of type DataSource
DataHandler.DataHandler(DataSource ds)
          Create a DataHandler instance referencing the specified DataSource.