Extension SDK

oracle.ide.addin
Interface ViewListener

All Known Implementing Classes:
ViewAdapter

public interface ViewListener

The ViewListener interface should be implemented by extensions that need to know when views in the IDE change their state. There are three state changes that a view reports: 1) when it is activated, 2) when it is deactivated, and 3) when it is closed.


Method Summary
 void viewActivated(ViewEvent e)
          Called when the view is activated.
 void viewClosed(ViewEvent e)
          Called when the view is closed.
 void viewDeactivated(ViewEvent e)
          Called when the view is deactivated.
 

Method Detail

viewActivated

public void viewActivated(ViewEvent e)
Called when the view is activated. The ViewEvent provides information about the view activated.


viewDeactivated

public void viewDeactivated(ViewEvent e)
Called when the view is deactivated. The ViewEvent provides information about the view activated.


viewClosed

public void viewClosed(ViewEvent e)
Called when the view is closed. The ViewEvent provides information about the view activated.


Extension SDK

 

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