public abstract class

ConnectionAdapter

extends Object
implements ConnectionListener
java.lang.Object
   ↳ com.google.code.javax.mail.event.ConnectionAdapter

Class Overview

The adapter which receives connection events. The methods in this class are empty; this class is provided as a convenience for easily creating listeners by extending this class and overriding only the methods of interest.

Summary

Public Constructors
ConnectionAdapter()
Public Methods
void closed(ConnectionEvent e)
Invoked when a Store/GmailFolder/Transport is closed.
void disconnected(ConnectionEvent e)
Invoked when a Store is disconnected.
void opened(ConnectionEvent e)
Invoked when a Store/GmailFolder/Transport is opened.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.code.javax.mail.event.ConnectionListener

Public Constructors

public ConnectionAdapter ()

Public Methods

public void closed (ConnectionEvent e)

Invoked when a Store/GmailFolder/Transport is closed.

Parameters
e

public void 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

public void opened (ConnectionEvent e)

Invoked when a Store/GmailFolder/Transport is opened.

Parameters
e