public interface PostStartupHook
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.
| Modifier and Type | Method and Description | 
|---|---|
void | 
install()
Perform installation tasks after IDE startup. 
 | 
void install()
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.