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

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

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

Subinterfaces of Entity in org.apache.james.mime4j.dom
 interface Message
          An MIME message (as defined in RFC 2045).
 

Methods in org.apache.james.mime4j.dom that return Entity
 Entity Entity.getParent()
          Gets the parent entity of this entity.
 Entity Body.getParent()
          Gets the parent of this body.
 Entity SingleBody.getParent()
           
 Entity Multipart.removeBodyPart(int index)
          Removes the body part at the specified position in the list of body parts.
 Entity Multipart.replaceBodyPart(Entity bodyPart, int index)
          Replaces the body part at the specified position in the list of body parts with the specified body part.
 

Methods in org.apache.james.mime4j.dom that return types with arguments of type Entity
 java.util.List<Entity> Multipart.getBodyParts()
          Gets the list of body parts.
 

Methods in org.apache.james.mime4j.dom with parameters of type Entity
 void Multipart.addBodyPart(Entity bodyPart)
          Adds a body part to the end of the list of body parts.
 void Multipart.addBodyPart(Entity bodyPart, int index)
          Inserts a body part at the specified position in the list of body parts.
 Entity Multipart.replaceBodyPart(Entity bodyPart, int index)
          Replaces the body part at the specified position in the list of body parts with the specified body part.
 void Entity.setParent(Entity parent)
          Sets the parent entity of this entity.
 void Body.setParent(Entity parent)
          Sets the parent of this body.
 void SingleBody.setParent(Entity parent)
           
 void MessageWriter.writeEntity(Entity entity, java.io.OutputStream out)
           
 

Method parameters in org.apache.james.mime4j.dom with type arguments of type Entity
 void Multipart.setBodyParts(java.util.List<Entity> bodyParts)
          Sets the list of body parts.
 

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

Classes in org.apache.james.mime4j.message that implement Entity
 class AbstractEntity
          Abstract MIME entity.
 class AbstractMessage
          Abstract MIME message.
 class BodyPart
          A MIME body part (as defined in RFC 2045).
 class MessageImpl
          Default implementation of Message.
 

Fields in org.apache.james.mime4j.message with type parameters of type Entity
protected  java.util.List<Entity> AbstractMultipart.bodyParts
           
 

Methods in org.apache.james.mime4j.message that return Entity
 Entity AbstractMultipart.getParent()
           
 Entity AbstractEntity.getParent()
          Gets the parent entity of this entity.
 Entity AbstractMultipart.removeBodyPart(int index)
          Removes the body part at the specified position in the list of body parts.
 Entity AbstractMultipart.replaceBodyPart(Entity bodyPart, int index)
          Replaces the body part at the specified position in the list of body parts with the specified body part.
 

Methods in org.apache.james.mime4j.message that return types with arguments of type Entity
 java.util.List<Entity> AbstractMultipart.getBodyParts()
          Gets the list of body parts.
 

Methods in org.apache.james.mime4j.message with parameters of type Entity
 void AbstractMultipart.addBodyPart(Entity bodyPart)
          Adds a body part to the end of the list of body parts.
 void AbstractMultipart.addBodyPart(Entity bodyPart, int index)
          Inserts a body part at the specified position in the list of body parts.
 BodyPart DefaultMessageBuilder.copy(Entity other)
          Creates a new BodyPart from the specified Entity.
 Entity AbstractMultipart.replaceBodyPart(Entity bodyPart, int index)
          Replaces the body part at the specified position in the list of body parts with the specified body part.
 void AbstractMultipart.setParent(Entity parent)
           
 void AbstractEntity.setParent(Entity parent)
          Sets the parent entity of this entity.
 void DefaultMessageWriter.writeEntity(Entity entity, java.io.OutputStream out)
          Write the specified Entity to the specified OutputStream.
 

Method parameters in org.apache.james.mime4j.message with type arguments of type Entity
 void AbstractMultipart.setBodyParts(java.util.List<Entity> bodyParts)
          Sets the list of body parts.
 



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