java.io.BufferedReader |
NNTPClient.retrieveArticle(long articleNumber,
ArticleInfo pointer) |
Retrieves an article from the currently selected newsgroup.
|
java.io.BufferedReader |
NNTPClient.retrieveArticle(java.lang.String articleId,
ArticleInfo pointer) |
Retrieves an article from the NNTP server.
|
java.io.BufferedReader |
NNTPClient.retrieveArticleBody(long articleNumber,
ArticleInfo pointer) |
Retrieves an article body from the currently selected newsgroup.
|
java.io.BufferedReader |
NNTPClient.retrieveArticleBody(java.lang.String articleId,
ArticleInfo pointer) |
Retrieves an article body from the NNTP server.
|
java.io.BufferedReader |
NNTPClient.retrieveArticleHeader(long articleNumber,
ArticleInfo pointer) |
Retrieves an article header from the currently selected newsgroup.
|
java.io.BufferedReader |
NNTPClient.retrieveArticleHeader(java.lang.String articleId,
ArticleInfo pointer) |
Retrieves an article header from the NNTP server.
|
boolean |
NNTPClient.selectArticle(long articleNumber,
ArticleInfo pointer) |
Select an article in the currently selected newsgroup by its number.
|
boolean |
NNTPClient.selectArticle(java.lang.String articleId,
ArticleInfo pointer) |
Select an article by its unique identifier (including enclosing
< and >) and return its article number and id through the
pointer parameter.
|
boolean |
NNTPClient.selectArticle(ArticleInfo pointer) |
Same as selectArticle((String) null, articleId) .
|
boolean |
NNTPClient.selectNextArticle(ArticleInfo pointer) |
Select the article following the currently selected article in the
currently selected newsgroup and return its number and unique id
through the pointer parameter.
|
boolean |
NNTPClient.selectPreviousArticle(ArticleInfo pointer) |
Select the article preceeding the currently selected article in the
currently selected newsgroup and return its number and unique id
through the pointer parameter.
|