Methods Summary |
---|
void | _setArticleCount(int count)
__estimatedArticleCount = count;
|
void | _setFirstArticle(int first)
__firstArticle = first;
|
void | _setLastArticle(int last)
__lastArticle = last;
|
void | _setNewsgroup(java.lang.String newsgroup)
__newsgroup = newsgroup;
|
void | _setPostingPermission(int permission)
__postingPermission = permission;
|
public int | getArticleCount()Get the estimated number of articles in the newsgroup. The
accuracy of this value will depend on the server implementation.
return __estimatedArticleCount;
|
public int | getFirstArticle()Get the number of the first article in the newsgroup.
return __firstArticle;
|
public int | getLastArticle()Get the number of the last article in the newsgroup.
return __lastArticle;
|
public java.lang.String | getNewsgroup()Get the newsgroup name.
return __newsgroup;
|
public int | getPostingPermission()Get the posting permission of the newsgroup. This will be one of
the POSTING_PERMISSION constants.
return __postingPermission;
|