| Method and Description |
|---|
| org.eclipse.core.runtime.IConfigurationElement.getAttributeAsIs(String)
The method is equivalent to the
IConfigurationElement.getAttribute(String). Contrary to its description,
this method returns a translated value. Use the IConfigurationElement.getAttribute(String) method instead. |
| org.eclipse.core.runtime.IExtensionPoint.getNamespace()
As namespace is no longer restricted to the contributor name,
use
IExtensionPoint.getNamespaceIdentifier() to obtain namespace name or IExtensionPoint.getContributor()
to get the name of the contributor of this registry element.
In the past namespace was dictated by the name of the bundle. If bundle
The namespace used to be the same as the bundle name. As a result, the
Since 3.2, the extension registry allows elements to specify qualified name. The extension point
of the plug-in (The use of a simple Id is still a preferred way. Whenever possible, specify only the simple Id and let runtime take care of the rest.)
If your code used the
If your code used the |
| org.eclipse.core.runtime.IConfigurationElement.getNamespace()
As namespace is no longer restricted to the contributor name,
use
IConfigurationElement.getNamespaceIdentifier() to obtain namespace name or IConfigurationElement.getContributor()
to get the name of the contributor of this registry element.
In the past namespace was dictated by the name of the bundle. If bundle
The namespace used to be the same as the bundle name. As a result, the
Since 3.2, the extension registry allows elements to specify qualified name. The extension point
of the plug-in (The use of a simple Id is still a preferred way. Whenever possible, specify only the simple Id and let runtime take care of the rest.)
If your code used the
If your code used the |
| org.eclipse.core.runtime.IExtension.getNamespace()
As namespace is no longer restricted to the contributor name,
use
IExtension.getNamespaceIdentifier() to obtain namespace name or IExtension.getContributor()
to get the name of the contributor of this registry element.
In the past namespace was dictated by the name of the bundle. If bundle
The namespace used to be the same as the bundle name. As a result, the
Since 3.2, the extension registry allows elements to specify qualified name. The extension point
of the plug-in (The use of a simple Id is still a preferred way. Whenever possible, specify only the simple Id and let runtime take care of the rest.)
If your code used the
If your code used the |
| org.eclipse.core.runtime.IConfigurationElement.getValueAsIs()
The method is equivalent to the
IConfigurationElement.getValue(). Contrary to its description,
this method returns a translated value. Use the IConfigurationElement.getValue() method instead. |
| org.eclipse.core.runtime.spi.RegistryStrategy.onStart(IExtensionRegistry) |