Uses of Class
com.jmo.mailmessager.utils.mail.MailAccount

Packages that use MailAccount
com.jmo.mailmessager Provides the controller class primarily responsible for managing MailMessager. 
com.jmo.mailmessager.utils.mail Provides the classes for connecting to mail servers and retrieving email, as well as storing Mail Account configurations and any received email messages. 
com.jmo.mailmessager.utils.xml Provides the XML Engine class that is responsible for all XML reading and writing to the configuration file, settings.xml. 
 

Uses of MailAccount in com.jmo.mailmessager
 

Methods in com.jmo.mailmessager that return MailAccount
static MailAccount[] MailMessagerController.getMailAccounts()
          Returns the current array of saved MailAccounts
 

Uses of MailAccount in com.jmo.mailmessager.utils.mail
 

Methods in com.jmo.mailmessager.utils.mail that return MailAccount
 MailAccount MailMessagerEmailFinder.getMessages()
          Returns the updated MailAccount that now contains any unread email messages
 

Methods in com.jmo.mailmessager.utils.mail with parameters of type MailAccount
 void MailMessagerEmailFinder.setMailAccount(MailAccount currentAccount)
          Setter for Mail Account from which to attempt to retrieve email
 

Uses of MailAccount in com.jmo.mailmessager.utils.xml
 

Methods in com.jmo.mailmessager.utils.xml that return MailAccount
static MailAccount[] MailMessagerXMLEngine.getAccounts()
          Parses settings.xml file into MailAccount[] array using DOMParser
 

Methods in com.jmo.mailmessager.utils.xml with parameters of type MailAccount
static void MailMessagerXMLEngine.writeSettingsToDisk(MailAccount[] mail, long polltime)
          Writes the settings.xml configuration file from the supplied MailAccount array and poll time.