Package org.apache.james.mime4j.dom
Interface Body
-
- All Superinterfaces:
Disposable
- All Known Implementing Classes:
AbstractMessage
,AbstractMultipart
,BinaryBody
,MessageImpl
,MultipartImpl
,SingleBody
,TextBody
public interface Body extends Disposable
A body of an MIME entity (as defined in RFC 2045).
A body can be a
Message
, aMultipart
or aSingleBody
. This interface should not be implemented directly by classes other than those.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Entity
getParent()
Gets the parent of this body.void
setParent(Entity parent)
Sets the parent of this body.-
Methods inherited from interface org.apache.james.mime4j.dom.Disposable
dispose
-
-