Uses of Interface
org.apache.james.mime4j.dom.Body

Packages that use Body
org.apache.james.mime4j.dom   
org.apache.james.mime4j.message   
 

Uses of Body in org.apache.james.mime4j.dom
 

Subinterfaces of Body in org.apache.james.mime4j.dom
 interface Message
          An MIME message (as defined in RFC 2045).
 interface Multipart
          A MIME multipart body (as defined in RFC 2045).
 

Classes in org.apache.james.mime4j.dom that implement Body
 class BinaryBody
          A body containing binary data.
 class SingleBody
          Abstract implementation of a single message body; that is, a body that does not contain (directly or indirectly) any other child bodies.
 class TextBody
          Encapsulates the contents of a text/* entity body.
 

Methods in org.apache.james.mime4j.dom that return Body
 Body Entity.getBody()
          Gets the body of this entity.
 Body Entity.removeBody()
          Removes and returns the body of this entity.
 

Methods in org.apache.james.mime4j.dom with parameters of type Body
 void Entity.setBody(Body body)
          Sets the body of this entity.
 void MessageWriter.writeBody(Body body, java.io.OutputStream out)
           
 

Uses of Body in org.apache.james.mime4j.message
 

Classes in org.apache.james.mime4j.message that implement Body
 class AbstractMessage
          Abstract MIME message.
 class AbstractMultipart
          Abstract MIME multipart body.
 class MessageImpl
          Default implementation of Message.
 class MultipartImpl
          Default implementation of Multipart.
 

Methods in org.apache.james.mime4j.message that return Body
 Body DefaultMessageBuilder.copy(Body body)
          Returns a copy of the given Body that can be used (and modified) independently of the original.
 Body AbstractEntity.getBody()
          Gets the body of this entity.
 Body AbstractEntity.removeBody()
          Removes and returns the body of this entity.
 

Methods in org.apache.james.mime4j.message with parameters of type Body
 Body DefaultMessageBuilder.copy(Body body)
          Returns a copy of the given Body that can be used (and modified) independently of the original.
 void AbstractEntity.setBody(Body body)
          Sets the body of this entity.
 void AbstractEntity.setBody(Body body, java.lang.String mimeType)
          Sets the body of this entity and sets the content-type to the specified value.
 void AbstractEntity.setBody(Body body, java.lang.String mimeType, java.util.Map<java.lang.String,java.lang.String> parameters)
          Sets the body of this entity and sets the content-type to the specified value.
 void DefaultMessageWriter.writeBody(Body body, java.io.OutputStream out)
          Write the specified Body to the specified OutputStream.
 



Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.