Extension SDK

oracle.jdeveloper.cm
Interface ConnectionListener


public interface ConnectionListener

The ConnectionListener interface specifies methods which are called in response to one of the available connection events.

See Also:
ConnectionEvent

Method Summary
 void connectionAdded(ConnectionEvent e)
          called when a ConnectionDescriptor has been added to a ConnectionManager.
 void connectionClosed(ConnectionEvent e)
          called when a ConnectionWrapper has been closed.
 void connectionModified(ConnectionEvent e)
          called when a ConnectionDescriptor has been modified.
 void connectionOpened(ConnectionEvent e)
          called when a ConnectionWrapper has been opened.
 void connectionRemoved(ConnectionEvent e)
          called when a ConnectionDescriptor has been removed from a ConnectionManager.
 

Method Detail

connectionAdded

public void connectionAdded(ConnectionEvent e)
called when a ConnectionDescriptor has been added to a ConnectionManager.

Parameters:
e - the ConnectionEvent
See Also:
ConnectionDescriptor, ConnectionEvent, ConnectionManager

connectionRemoved

public void connectionRemoved(ConnectionEvent e)
called when a ConnectionDescriptor has been removed from a ConnectionManager.

Parameters:
e - the ConnectionEvent
See Also:
ConnectionDescriptor, ConnectionEvent, ConnectionManager

connectionModified

public void connectionModified(ConnectionEvent e)
called when a ConnectionDescriptor has been modified.

Parameters:
e - the ConnectionEvent
See Also:
ConnectionDescriptor, ConnectionEvent

connectionOpened

public void connectionOpened(ConnectionEvent e)
called when a ConnectionWrapper has been opened.

Parameters:
e - the ConnectionEvent
See Also:
ConnectionEvent, ConnectionWrapper

connectionClosed

public void connectionClosed(ConnectionEvent e)
called when a ConnectionWrapper has been closed.

Parameters:
e - the ConnectionEvent
See Also:
ConnectionEvent, ConnectionWrapper

Extension SDK

 

Copyright ©1997, 2003, Oracle. All rights reserved.