- 
- All Superinterfaces:
- java.util.EventListener
 - All Known Implementing Classes:
- ConnectionAdapter
 
 public interface ConnectionListener extends java.util.EventListenerThis is the Listener interface for Connection events.- Author:
- John Mani
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclosed(ConnectionEvent e)Invoked when a Store/Folder/Transport is closed.voiddisconnected(ConnectionEvent e)Invoked when a Store is disconnected.voidopened(ConnectionEvent e)Invoked when a Store/Folder/Transport is opened.
 
- 
- 
- 
Method Detail- 
openedvoid opened(ConnectionEvent e) Invoked when a Store/Folder/Transport is opened.- Parameters:
- e- the ConnectionEvent
 
 - 
disconnectedvoid disconnected(ConnectionEvent e) Invoked when a Store is disconnected. Note that a folder cannot be disconnected, so a folder will not fire this event- Parameters:
- e- the ConnectionEvent
 
 - 
closedvoid closed(ConnectionEvent e) Invoked when a Store/Folder/Transport is closed.- Parameters:
- e- the ConnectionEvent
 
 
- 
 
-