All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schema.applications.exsd Maven / Gradle / Ivy





      
         
      
      
         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 <i>-application</i> 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.
      
   

   
      
         
            
         
         
            
               
                  
               
            
         
         
            
               
                  
               
            
         
         
            
               
                  
               
               
                  
               
            
         
      
   

   
      
         
            
         
         
            
               
                  Specifies whether the application should be visible for the user.  For example, some applications may provide features to other applications but nothing directly to the user. In this case the application should not be revealed to the user to start it individually. The default value is set to true.
               
            
         
         
            
               
                  Specifies the cardinality of the application.  The cardinality controls the number of applications that may be running at the same time in the Platform.  The following cardinality types are allowed
<dl>
<dt>singleton-global</dt>
<dd>This application must be the only application running.  No other types of
 applications can start while this application is active</dd>
<dt>singleton-scoped</dt>
<dd>This application must be the only scoped application running.  No other applications that use the singleton-scoped cardinality can start while this application is active</dd>
<dt>integer</dt>
<dd>An integer indicates the maximum number of active instances allowed for this application.  Other applications are allowed to start while this application is active, except for singleton-global applications</dd>
<dt>*</dt>
<dd>A value of "*" indicates there is no maximum on the number of active instances allowed for this application.  Other applications are allowed to start while this application is active, except for singleton-global applications</dd>
</dl>
The default value is "singleton-global".
               
            
            
               
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
                  
               
            
         
         
            
               
                  Specifies the thread the application must run on.  The following thread types are allowed.
<dl>
<dt>main</dt>
<dd>This application must run on the main thread.</dd>
<dt>any</dt>
<dd>This application may run on any thread.</dd>
</dl>
The default value is "main".
               
            
            
               
                  
                  
                  
                  
               
            
         
         
            
               
                  Path to a resource that should be used as the application icon.  The path may be translated to provide a different icon according to the locale.
               
               
                  
               
            
         
      
   

   
      
         
            
         
         
            
               
                  the fully-qualified name of a class which implements <samp>org.eclipse.equinox.application.IApplication</samp>.
               
               
                  
               
            
         
      
   

   
      
         
            
         
      
      
         
            
               
                  the name of this parameter made available to instances of the specified application class
               
            
         
         
            
               
                  the value of this parameter made available to instances of the specified application class
               
            
         
      
   

   
      
         
      
      
         Following is an example of an application declaration: 
<p>
<pre>
   <extension id="coolApplication" point="org.eclipse.core.runtime.applications"> 
      <application> 
         <run class="com.xyz.applications.Cool"> 
            <parameter name="optimize" value="true"/> 
         </run> 
      </application> 
   </extension> 
</pre>
</p>
      
   

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

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

   
      
         
      
      
         Copyright (c) 2004, 2007 IBM Corporation and others.<br>
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 
<a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>
      
   






© 2015 - 2025 Weber Informatics LLC | Privacy Policy