diff options
author | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2015-01-14 23:26:38 -0800 |
---|---|---|
committer | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2015-01-14 23:26:48 -0800 |
commit | 686d0e22b545808486cadb4d1e1a272515ecc7fd (patch) | |
tree | f2c7dc5c0349079a959f7365eda6844fd98e5e3f /src/core/abstract | |
parent | dfd76892dbab3b7fdc8dd6e12a2f262b1445a3bc (diff) |
Work in progress on javadoc
Diffstat (limited to 'src/core/abstract')
-rw-r--r-- | src/core/abstract/MCAbstractMessage.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/abstract/MCAbstractMessage.h b/src/core/abstract/MCAbstractMessage.h index 6e7e2431..1f567a52 100644 --- a/src/core/abstract/MCAbstractMessage.h +++ b/src/core/abstract/MCAbstractMessage.h @@ -16,14 +16,21 @@ namespace mailcore { AbstractMessage(); virtual ~AbstractMessage(); + /** Header of the message. */ virtual MessageHeader * header(); + /** Set a header of the message. */ virtual void setHeader(MessageHeader * header); + /** Returns a part matching the given contentID. */ virtual AbstractPart * partForContentID(String * contentID); + /** Returns a part matching the given uniqueID */ virtual AbstractPart * partForUniqueID(String * uniqueID); + /** Returns the list of attachments, not part of the content of the message. */ virtual Array * /* AbstractPart */ attachments(); + /** Returns the list of attachments that are shown inline in the content of the message. */ virtual Array * /* AbstractPart */ htmlInlineAttachments(); + /** Returns the list of the text parts required to render the message properly. */ virtual Array * /* AbstractPart */ requiredPartsForRendering(); public: //subclass behavior |