Uses of Interface
org.eclipse.core.runtime.IConfigurationElement

Packages that use IConfigurationElement
org.eclipse.core.expressions Application programming interfaces for the expression language. 
org.eclipse.core.runtime Provides support for the runtime platform, core utility methods and the extension registry. 
org.eclipse.core.runtime.content Provides core support for content types. 
org.eclipse.ercp.eworkbench   
org.eclipse.ui.part Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface. 
 

Uses of IConfigurationElement in org.eclipse.core.expressions
 

Methods in org.eclipse.core.expressions with parameters of type IConfigurationElement
abstract  Expression ElementHandler.create(ExpressionConverter converter, IConfigurationElement config)
          Creates the corresponding expression for the given configuration element.
 Expression ExpressionConverter.perform(IConfigurationElement root)
          Converts the tree of configuration elements represented by the given root element and returns a corresponding expression tree.
protected  void ElementHandler.processChildren(ExpressionConverter converter, IConfigurationElement element, org.eclipse.core.internal.expressions.CompositeExpression expression)
          Converts the children of the given configuration element and adds them to the given composite expression.
 

Uses of IConfigurationElement in org.eclipse.core.runtime
 

Methods in org.eclipse.core.runtime that return IConfigurationElement
 IConfigurationElement[] IConfigurationElement.getChildren()
          Returns all configuration elements that are children of this configuration element.
 IConfigurationElement[] IConfigurationElement.getChildren(java.lang.String name)
          Returns all child configuration elements with the given name.
 IConfigurationElement[] IExtensionPoint.getConfigurationElements()
          Returns all configuration elements from all extensions configured into this extension point.
 IConfigurationElement[] IExtension.getConfigurationElements()
          Returns all configuration elements declared by this extension.
 IConfigurationElement[] IExtensionRegistry.getConfigurationElementsFor(java.lang.String extensionPointId)
          Returns all configuration elements from all extensions configured into the identified extension point.
 IConfigurationElement[] IPluginRegistry.getConfigurationElementsFor(java.lang.String extensionPointId)
          Deprecated. Replaced by IExtensionRegistry.getConfigurationElementsFor(String).
 IConfigurationElement[] IExtensionRegistry.getConfigurationElementsFor(java.lang.String namespace, java.lang.String extensionPointName)
          Returns all configuration elements from all extensions configured into the identified extension point.
 IConfigurationElement[] IPluginRegistry.getConfigurationElementsFor(java.lang.String pluginId, java.lang.String extensionPointName)
          Deprecated. Replaced by IExtensionRegistry.getConfigurationElementsFor(String, String).
 IConfigurationElement[] IExtensionRegistry.getConfigurationElementsFor(java.lang.String namespace, java.lang.String extensionPointName, java.lang.String extensionId)
          Returns all configuration elements from the identified extension.
 IConfigurationElement[] IPluginRegistry.getConfigurationElementsFor(java.lang.String pluginId, java.lang.String extensionPointName, java.lang.String extensionId)
          Deprecated. Replaced by IExtensionRegistry.getConfigurationElementsFor(String, String, String).
 

Methods in org.eclipse.core.runtime with parameters of type IConfigurationElement
 void IExecutableExtension.setInitializationData(IConfigurationElement config, java.lang.String propertyName, java.lang.Object data)
          This method is called by the implementation of the method IConfigurationElement.createExecutableExtension on a newly constructed extension, passing it its relevant configuration information.
 

Uses of IConfigurationElement in org.eclipse.core.runtime.content
 

Methods in org.eclipse.core.runtime.content with parameters of type IConfigurationElement
 void XMLRootElementContentDescriber2.setInitializationData(IConfigurationElement config, java.lang.String propertyName, java.lang.Object data)
           
 void XMLRootElementContentDescriber.setInitializationData(IConfigurationElement config, java.lang.String propertyName, java.lang.Object data)
          Deprecated.  
 void BinarySignatureDescriber.setInitializationData(IConfigurationElement config, java.lang.String propertyName, java.lang.Object data)
           
 

Uses of IConfigurationElement in org.eclipse.ercp.eworkbench
 

Methods in org.eclipse.ercp.eworkbench that return IConfigurationElement
 IConfigurationElement ApplicationDescriptor.getConfigElement()
          Return the configuration element used to create this perspective, if one was used.
 

Methods in org.eclipse.ercp.eworkbench with parameters of type IConfigurationElement
static java.lang.Object eWorkbenchPlugin.createExtension(IConfigurationElement element, java.lang.String classAttribute)
          Creates an extension.
protected  boolean ApplicationRegistryReader.readElement(IConfigurationElement element)
          readElement method comment.
 void eWorkbench.setInitializationData(IConfigurationElement config, java.lang.String propertyName, java.lang.Object data)
           
 

Constructors in org.eclipse.ercp.eworkbench with parameters of type IConfigurationElement
ApplicationDescriptor(java.lang.String id, IConfigurationElement configElement)
          Create a descriptor from a config element.
 

Uses of IConfigurationElement in org.eclipse.ui.part
 

Methods in org.eclipse.ui.part that return IConfigurationElement
protected  IConfigurationElement WorkbenchPart.getConfigurationElement()
          Returns the configuration element for this part.
 

Methods in org.eclipse.ui.part with parameters of type IConfigurationElement
 void WorkbenchPart.setInitializationData(IConfigurationElement cfig, java.lang.String propertyName, java.lang.Object data)
          This method is called by the implementation of the method IConfigurationElement.createExecutableExtension on a newly constructed extension, passing it its relevant configuration information. The WorkbenchPart implementation of this IExecutableExtension records the configuration element in and internal state variable (accessible via getConfigElement).
 void ViewPart.setInitializationData(IConfigurationElement cfig, java.lang.String propertyName, java.lang.Object data)