blob: a05f6a30675d87726ff8d725311639f722e877b1 (
plain)
1
2
3
4
5
6
7
|
package com.libmailcore;
/** Operation to fetch header of a given article. */
public class NNTPFetchHeaderOperation extends NNTPOperation {
/** Parsed header of the article. */
public native MessageHeader header();
}
|