Uses of Class
javax.activation.DataHandler

Packages that use DataHandler
javax.activation   
javax.mail   
javax.mail.internet   
 

Uses of DataHandler in javax.activation
 

Fields in javax.activation declared as DataHandler
(package private)  DataHandler DataHandlerDataSource.dataHandler
           
 

Methods in javax.activation with parameters of type DataHandler
 void CommandObject.setCommandContext(String verb, DataHandler dh)
          Initialize the Command with the verb it is requested to handle and the DataHandler that describes the data it will operate on.
 Object CommandInfo.getCommandObject(DataHandler dh, ClassLoader loader)
          Return the instantiated JavaBean component.
 

Constructors in javax.activation with parameters of type DataHandler
DataHandlerDataSource(DataHandler dh)
          The constructor.
 

Uses of DataHandler in javax.mail
 

Methods in javax.mail that return DataHandler
 DataHandler Part.getDataHandler()
          Return a DataHandler for the content within this part.
 

Methods in javax.mail with parameters of type DataHandler
 void Part.setDataHandler(DataHandler dh)
          This method provides the mechanism to set this part's content.
 

Uses of DataHandler in javax.mail.internet
 

Fields in javax.mail.internet declared as DataHandler
protected  DataHandler MimeMessage.dh
          The DataHandler object representing this Message's content.
protected  DataHandler MimeBodyPart.dh
          The DataHandler object representing this Part's content.
 

Methods in javax.mail.internet that return DataHandler
 DataHandler MimeMessage.getDataHandler()
          Return a DataHandler for this Message's content.
 DataHandler MimeBodyPart.getDataHandler()
          Return a DataHandler for this body part's content.
 

Methods in javax.mail.internet with parameters of type DataHandler
(package private) static String MimeUtility.getEncoding(DataHandler dh)
          Same as getEncoding(DataSource) except that instead of reading the data from an InputStream it uses the writeTo method to examine the data.
 void MimeMessage.setDataHandler(DataHandler dh)
          This method provides the mechanism to set this part's content.
 void MimeBodyPart.setDataHandler(DataHandler dh)
          This method provides the mechanism to set this body part's content.