Extension SDK 10.1.3.36.73

oracle.ide
Interface IdeActivationListener

All Superinterfaces:
java.util.EventListener

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

public 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

public 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

Extension SDK 10.1.3.36.73

 

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