aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/POPMessageInfo.java
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2015-01-17 22:30:00 -0800
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2015-01-17 22:30:00 -0800
commit9358b2fda79ff8ef9ae712e76a05181536a2febd (patch)
treec84517654064d017de8083b0c68fdbf54481e700 /src/java/com/libmailcore/POPMessageInfo.java
parente2b178f73a516d50698e5b98e093d595aac34b2c (diff)
Javadoc
Diffstat (limited to 'src/java/com/libmailcore/POPMessageInfo.java')
-rw-r--r--src/java/com/libmailcore/POPMessageInfo.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/java/com/libmailcore/POPMessageInfo.java b/src/java/com/libmailcore/POPMessageInfo.java
index cbb2aa31..70230fe7 100644
--- a/src/java/com/libmailcore/POPMessageInfo.java
+++ b/src/java/com/libmailcore/POPMessageInfo.java
@@ -1,18 +1,26 @@
package com.libmailcore;
+/** Info about a message. */
public class POPMessageInfo extends NativeObject {
+ /** Constructor. */
public POPMessageInfo()
{
setupNative();
}
+ /** Sets the index of the message. */
public native void setIndex(int index);
+ /** Returns the index of the message, valid during the POP session. */
public native int index();
+ /** Sets the size of the message. */
public native void setSize(long size);
+ /** Returns the size of the message. */
public native long size();
+ /** Sets the unique identifier of the message. */
public native void setUid(String uid);
+ /** Returns the unique identifier of the message. */
public native String uid();
private native void setupNative();