aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/AbstractMessage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/com/libmailcore/AbstractMessage.java')
-rw-r--r--src/java/com/libmailcore/AbstractMessage.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/java/com/libmailcore/AbstractMessage.java b/src/java/com/libmailcore/AbstractMessage.java
index 7eb2a9af..3f76c695 100644
--- a/src/java/com/libmailcore/AbstractMessage.java
+++ b/src/java/com/libmailcore/AbstractMessage.java
@@ -4,16 +4,19 @@ import java.util.List;
/** Abstract message. */
public class AbstractMessage extends NativeObject {
- /** Header of the message. */
+ /** Returns the header of the message. */
public native MessageHeader header();
/** Sets the header of the message. */
public native void setHeader(MessageHeader header);
- /** Returns the MIME part with the given Content-ID. */
+ /**
+ Returns the MIME part with the given Content-ID.
+ @see com.libmailcore.AbstractPart#contentID()
+ */
public native AbstractPart partForContentID(String contentID);
/**
Returns the MIME part with the given uniqueID.
- @see AbtractPart#uniqueID()
+ @see com.libmailcore.AbstractPart#uniqueID()
*/
public native AbstractPart partForUniqueID(String uniqueID);
/** Returns the list of attachments, not part of the content of the message. */