aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/AbstractPart.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/java/com/libmailcore/AbstractPart.java')
-rw-r--r--src/java/com/libmailcore/AbstractPart.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/java/com/libmailcore/AbstractPart.java b/src/java/com/libmailcore/AbstractPart.java
index 61ae15d2..60a325bc 100644
--- a/src/java/com/libmailcore/AbstractPart.java
+++ b/src/java/com/libmailcore/AbstractPart.java
@@ -6,12 +6,12 @@ import java.util.AbstractList;
public class AbstractPart extends NativeObject {
/**
Returns the type of the part.
- @see PartType.
+ @see com.libmailcore.PartType
*/
public native int partType();
/**
Sets the type of the part.
- @see PartType.
+ @see com.libmailcore.PartType
*/
public native void setPartType(int partType);
@@ -53,11 +53,14 @@ public class AbstractPart extends NativeObject {
/** Sets the hint about whether the attachment should be shown inline. */
public native void setInlineAttachment(boolean inlineAttachment);
- /** 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);