* add the available accounts to the inbox
*/
private void initView()
{
AccountController accountController = PluginContext.instance().getAccountController();
UserAccount account;
try
{
account = UserSession.getCurrentAccount();
if( account == null)
{
account = accountController.login("spotnik06", "spotnik06");
}
for( MailAccount mailAccount : account.getAccounts())
{
createMailBox(this.inboxTreeItem, mailAccount);
}
}
catch( DatabaseException ex)