Uses of Class
nan.model.Newsgroup

Packages that use Newsgroup
nan.model   
nan.nntp   
nan.tools   
 

Uses of Newsgroup in nan.model
 

Methods in nan.model that return Newsgroup
static Newsgroup XMLFactory.getNewsgroup(org.dom4j.Document document)
          Recreates a Newsgroup from an XML Document.
 Newsgroup NewsgroupList.remove(int index)
          Removes a Newsgroup from this list.
 Newsgroup NewsgroupList.get(int index)
          Gets a Newsgroup from this list.
 

Methods in nan.model with parameters of type Newsgroup
 boolean NewsgroupList.contains(Newsgroup newsgroup)
          Asks if a Newsgroup is contained in this list.
 void NewsgroupList.add(Newsgroup newsgroup)
          Adds a Newsgroup to this list.
 

Uses of Newsgroup in nan.nntp
 

Methods in nan.nntp with parameters of type Newsgroup
 boolean NNTPClientImpl.selectNewsgroup(Newsgroup newsgroup)
          Selects the current Newsgroup.
 java.util.Iterator NNTPClientImpl.getMessagesSince(Newsgroup newsgroup, java.util.Date when)
          Gets the message IDs in an iterator of all messages added to a Newsgroup since a Date.
 boolean NNTPClient.selectNewsgroup(Newsgroup newsgroup)
          Selects the current Newsgroup.
 java.util.Iterator NNTPClient.getMessagesSince(Newsgroup newsgroup, java.util.Date when)
          Gets the message IDs in an iterator of all messages added to a Newsgroup since a Date.
 

Uses of Newsgroup in nan.tools
 

Methods in nan.tools with parameters of type Newsgroup
static java.io.File BackgroundCacheWriter.getCacheDirectory(Newsgroup newsgroup)
          Gets the cache directory for a Newsgroup.
static java.io.File BackgroundCacheWriter.getCacheFile(Newsgroup newsgroup, MessageHeader header)
          Gets the cache file for a Newsgroup Message.
static java.io.File BackgroundCacheWriter.getGroupFile(Newsgroup newsgroup)
          Gets the group cache file.
static void BackgroundCacheWriter.writeCacheFile(Newsgroup newsgroup, XMLSerializable xml, MessageHeader header)
          Writes a message to the cache.
 

Constructors in nan.tools with parameters of type Newsgroup
BackgroundNewsgroupDownloader(NNTPClient client, WaitDialog dialog, Newsgroup newsgroup, MessageTree tree)
          Creates a new BackgroundNewsgroupDownloader object.
BackgroundCacheWriter(Newsgroup newsgroup, MessageTree tree)
          Creates a new BackgroundCacheWriter object.
BackgroundCacheReader(java.io.File directory, Newsgroup newsgroup, MessageTree tree, WaitDialog dialog)
          Creates a new BackgroundCacheReader object.
BackgroundCacheDownloader(View waiter, Newsgroup newsgroup, NNTPClient client, WaitDialog dialog)
          Creates a new BackgroundCacheDownloader object.