Startup
Identifier:
org.eclipse.ui.startup
Since:
Release 2.0
Description:
This extension point is used to register plugins that want to be activated on startup. The plugin class or the class given as the attribute on the startup element must implement the interface org.eclipse.ui.IStartup. Once the workbench is started, the method earlyStartup() will be called from a separate thread.
If the startup element has a class attribute, the method earlyStartup() will be called on this class. Otherwise, this method will be called from the plugin class.
These plugins are listed in the workbench preferences and the user may disable any plugin from early startup.
Configuration Markup:
<!ELEMENT extension (startup*)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- point - a fully qualified identifier of the target extension point
- id - an optional identifier of the extension instance
- name - an optional name of the extension instance
<!ELEMENT startup EMPTY>
<!ATTLIST startup
class CDATA #IMPLIED>
- class - a fully qualified name of the class that implements
org.eclipse.ui.IStartup.
Since release 3.0.
Examples:
Following is an example of a startup extension:
<p>
<extension point=
"org.eclipse.ui.startup"
/>
</p>
API Information:
See interface org.eclipse.ui.IStartup.
Copyright (c) 2002, 2004 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html