Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.2.0)

E17493-03


oracle.ide.view
Interface ViewListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
PropertyInspector, ViewAdapter

public interface ViewListener
extends java.util.EventListener

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

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

viewDeactivated

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

viewClosed

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

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.2.0)

E17493-03


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