KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > mail > mailchecking > IMailCheckingListener


1 package org.columba.mail.mailchecking;
2
3 import java.util.EventListener JavaDoc;
4
5 /**
6  * Get notified if new messages arrive.
7  *
8  * @author frd
9  */

10 public interface IMailCheckingListener extends EventListener JavaDoc{
11
12     /**
13      * Method is executed whenever a new messages arrives, being it POP3 or
14      * IMAP.
15      *
16      * @param event mail checking event provides context information
17      */

18     public void newMessageArrived(IMailCheckingEvent event);
19 }
20
Popular Tags