Extension SDK

oracle.ide
Interface IdeListener

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

public interface IdeListener
extends java.util.EventListener

A listener to IDE events. It is strongly encouraged to extend the IdeAdapter instead of implementing IdeListener so that addition of new events will not break the build.


Method Summary
 void addinsLoaded(IdeEvent e)
          Called in the Ide startup sequence after all the addins are loaded.
 void mainWindowClosing(IdeEvent e)
          Called in the Ide shutdown sequence just before the UI is dismissed
 void mainWindowOpened(IdeEvent e)
          Called in the Ide startup sequence after the UI is shown.
 

Method Detail

addinsLoaded

public void addinsLoaded(IdeEvent e)
Called in the Ide startup sequence after all the addins are loaded.

Parameters:
e - the event

mainWindowOpened

public void mainWindowOpened(IdeEvent e)
Called in the Ide startup sequence after the UI is shown.

Parameters:
e - the event

mainWindowClosing

public void mainWindowClosing(IdeEvent e)
Called in the Ide shutdown sequence just before the UI is dismissed

Parameters:
e - the event

Extension SDK

 

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