Applications

Identifier:
org.eclipse.core.runtime.applications

Description:
Platform runtime supports plug-ins which would like to declare main entry points. That is, programs which would like to run using the platform runtime but yet control all aspects of execution can declare themselves as an application. Declared applications can be run directly from the main platform launcher by specifying the -application argument where the parameter is the id of an extension supplied to the applications extension point described here. This application is instantiated and run by the platform. Platform clients can also use the platform to lookup and run multiple applications.

Configuration Markup:

<!ELEMENT extension (application)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #REQUIRED

name  CDATA #IMPLIED>


<!ELEMENT application (run?)>

<!ATTLIST application

visible     (true | false) "true"

cardinality (singleton-global|singleton-scoped|1|2|3|4|5|*) "singleton-global"

thread      (main|any) "main"

icon        CDATA #IMPLIED>


<!ELEMENT run (parameter*)>

<!ATTLIST run

class CDATA #REQUIRED>


<!ELEMENT parameter EMPTY>

<!ATTLIST parameter

name  CDATA #REQUIRED

value CDATA #REQUIRED>


Examples:
Following is an example of an application declaration:


   <extension id="coolApplication" point="org.eclipse.core.runtime.applications"> 
      <application> 
         <run class="com.xyz.applications.Cool"> 
            <parameter name="optimize" value="true"/> 
         </run> 
      </application> 
   </extension> 

API Information:
The value of the class attribute must represent an implementor of org.eclipse.equinox.application.IApplication. The interface org.eclipse.core.runtime.IPlatformRunnable has been deprecated and replaced by the org.eclipse.equinox.application.IApplication interface. The org.eclipse.core.runtime.IPlatformRunnable interface is supported only for backwards compatibility.

Supplied Implementation:
The platform supplies a number of applications including the platform workbench itself.


Copyright (c) 2004, 2007 IBM Corporation and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0