Launch Items

Identifier

org.eclipse.swt.examples.launcher.launchItems

Description

This extension point is used to add 'standalone program' and 'Workbench view' launch items to the Launcher, optionally grouping them into categories so as to form a multi-tiered hierarchy. Standalone programs are executed using the platform's event loop. Workbench views are created within the active Workbench Perspective.

Markup

   <!ELEMENT extension EMPTY>
   <!ATTLIST extension
     point CDATA #REQUIRED
     id    CDATA #IMPLIED
     name  CDATA #IMPLIED
   >

   <!ELEMENT program EMPTY>
   <!ATTLIST program
     mainClass CDATA #REQUIRED
     pluginId  CDATA #REQUIRED
   >

   <!ELEMENT view EMPTY>
   <!ATTLIST view
     viewId CDATA #REQUIRED
   >

   <!ELEMENT category EMPTY>
   <!ATTLIST category
     name     CDATA #REQUIRED
     id       CDATA #REQUIRED
     category CDATA #IMPLIED
   >

   <!ELEMENT item EMPTY>
   <!ATTLIST item
     name        CDATA #REQUIRED
     id          CDATA #REQUIRED
     category    CDATA #IMPLIED
     icon        CDATA #IMPLIED
     enabled     (true | false) "false""true"
     description CDATA #IMPLIED
   >

Example

API Information

Supplied Implementation