Skip navigation links

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

E17493-04


oracle.ide
Interface IdeActivationListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
JarIndexWindowActivationListener

public interface IdeActivationListener
extends java.util.EventListener

A listener for IDE activation and deactivation events. Implementations of this interface should do the minimum necessary to respond to the event, especially activation, since the events are delivered on the AWT/Swing event dispatch thread.


Method Summary
 void activated(IdeActivationEvent e)
          Called when the user activates the IDE.
 void deactivated(IdeActivationEvent e)
          Called when the user deactivates the IDE.

 

Method Detail

activated

void activated(IdeActivationEvent e)
Called when the user activates the IDE. Usually this means bringing IDE's user interface to the foreground, after switching from a different application.

The IDE calls this method on the AWT/Swing event dispatch thread.

Parameters:
e - the event

deactivated

void deactivated(IdeActivationEvent e)
Called when the user deactivates the IDE. Usually this means moving the IDE's user interface into the background and switching to a different application.

The IDE calls this method on the AWT/Swing event dispatch thread.

Parameters:
e - the event

Skip navigation links

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

E17493-04


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