Uses of Interface
javax.mail.Part

Packages that use Part
javax.mail   
javax.mail.internet   
 

Uses of Part in javax.mail
 

Classes in javax.mail that implement Part
 class BodyPart
          This class models a Part that is contained within a Multipart.
 class Message
          This class models an email message.
 

Fields in javax.mail declared as Part
protected  Part Multipart.parent
          The Part containing this Multipart, if known.
 

Methods in javax.mail that return Part
 Part Multipart.getParent()
          Return the Part that contains this Multipart object, or null if not known.
 Part MessageContext.getPart()
          Return the Part that contains the content.
 

Methods in javax.mail with parameters of type Part
 void Multipart.setParent(Part parent)
          Set the parent of this Multipart to be the specified Part.
 

Constructors in javax.mail with parameters of type Part
MessageContext.MessageContext(Part part)
          Create a MessageContext object describing the context of the given Part.
 

Uses of Part in javax.mail.internet
 

Subinterfaces of Part in javax.mail.internet
 interface MimePart
          The MimePart interface models an Entity as defined by MIME (RFC2045, Section 2.4).
 

Classes in javax.mail.internet that implement Part
 class MimeBodyPart
          This class represents a MIME body part.
 class MimeMessage
          This class represents a MIME style email message.