Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.5.0)

E13403-06


oracle.ide.webupdate
Interface PostStartupHook

All Known Implementing Classes:
ESDKInstaller

public interface PostStartupHook

A PostStartupHook allows an update to perform programmatic work after installation. The PostStartupHook's install() method is called once, immediately after an update has been installed.

PostStartupHooks must be aware that they are called whether the update is a new install or an upgrade. If the update is an upgrade, they should take care not to perform unnecessary work.

Since:
10.1.3

Method Summary
 void install()
          Perform installation tasks after IDE startup.

 

Method Detail

install

void install()
Perform installation tasks after IDE startup. This method will be called on the AWT event dispatch thread after all addins have been loaded and the main window is visible.

If your post startup hook does a lot of work, you should consider running the work in a thread and displaying progress UI. Otherwise, the IDE will appear to hang while your hook is executing.


Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.5.0)

E13403-06


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