Eclipse Platform
Release 3.3

org.eclipse.equinox.app
Interface IApplicationContext


public interface IApplicationContext

The context used to start an application.

This interface is not intended to be implemented by clients.

Since:
1.0

Field Summary
static String APPLICATION_ARGS
          A key used to store arguments for the application.
 
Method Summary
 void applicationRunning()
          This method should be called once the application is completely initialized and running.
 Map getArguments()
          The arguments used for the application.
 String getBrandingApplication()
          Returns the application associated with this application context.
 Bundle getBrandingBundle()
          Returns the bundle which is responsible for the definition of the product associated with this application context.
 String getBrandingDescription()
          Returns the text description of the product associated with this application context.
 String getBrandingId()
          Returns the unique product id of the product associated with this application context.
 String getBrandingName()
          Returns the name of the product associated with this application context.
 String getBrandingProperty(String key)
          Returns the property with the given key of the product associated with this application context.
 

Field Detail

APPLICATION_ARGS

public static final String APPLICATION_ARGS
A key used to store arguments for the application. The content of this argument is unchecked and should conform to the expectations of the application being invoked. Typically this is a String array.

If the map used to launch an application ApplicationDescriptor.launch(Map) does not contain a value for this key then command line arguments used to launch the platform are set in the arguments of the application context.

See Also:
Constant Field Values
Method Detail

getArguments

public Map getArguments()
The arguments used for the application. The arguments from ApplicationDescriptor.launch(Map) are used as the arguments for this context when an application is launched.

Returns:
a map of application arguments.

applicationRunning

public void applicationRunning()
This method should be called once the application is completely initialized and running. This method will perform certain operations that are needed once an application is running. One example is bringing down a splash screen if it exists.


getBrandingApplication

public String getBrandingApplication()
Returns the application associated with this application context. This information is used to guide the runtime as to what application extension to create and execute.

Returns:
this product's application or null if none

getBrandingName

public String getBrandingName()
Returns the name of the product associated with this application context. The name is typically used in the title bar of UI windows.

Returns:
the name of the product or null if none

getBrandingDescription

public String getBrandingDescription()
Returns the text description of the product associated with this application context.

Returns:
the description of the product or null if none

getBrandingId

public String getBrandingId()
Returns the unique product id of the product associated with this application context.

Returns:
the id of the product

getBrandingProperty

public String getBrandingProperty(String key)
Returns the property with the given key of the product associated with this application context. null is returned if there is no such key/value pair.

Parameters:
key - the name of the property to return
Returns:
the value associated with the given key or null if none

getBrandingBundle

public Bundle getBrandingBundle()
Returns the bundle which is responsible for the definition of the product associated with this application context. Typically this is used as a base for searching for images and other files that are needed in presenting the product.

Returns:
the bundle which defines the product or null if none

Eclipse Platform
Release 3.3

Guidelines for using Eclipse APIs.

Copyright (c) IBM Corp. and others 2000, 2007. All rights reserved.