blob: b1a3981458483d8796bc652bec5e558192334bfd (
plain)
1
2
3
4
5
6
7
|
package com.libmailcore;
/** Operation to fetch a message. */
public class POPFetchMessageOperation extends POPOperation {
/** Content of the message in RFC 822 format. */
public native byte[] data();
}
|