blob: abd1774cf48fdb79a276c030800a08a3297ea8a1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2015 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-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.runtime;
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this interface is not supported anymore.
*
* @noextend This interface is not intended to be extended by clients.
* @noreference This interface is not intended to be referenced by clients.
* @noimplement This interface is not intended to be implemented by clients.
*
* This interface is planned to be deleted, see
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=544339
*
*/
@Deprecated
public interface IPluginRegistry {
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
* @deprecated Replaced by {@link IExtensionRegistry#getConfigurationElementsFor(String)}
* .
*/
@Deprecated
public IConfigurationElement[] getConfigurationElementsFor(String extensionPointId);
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
* @deprecated Replaced by {@link IExtensionRegistry#getConfigurationElementsFor(String, String)}.
*/
@Deprecated
public IConfigurationElement[] getConfigurationElementsFor(String pluginId, String extensionPointName);
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
* @deprecated Replaced by {@link IExtensionRegistry#getConfigurationElementsFor(String, String, String)}.
*/
@Deprecated
public IConfigurationElement[] getConfigurationElementsFor(String pluginId, String extensionPointName, String extensionId);
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
* @deprecated Replaced by {@link IExtensionRegistry#getExtension(String, String)}.
*/
@Deprecated
public IExtension getExtension(String extensionPointId, String extensionId);
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
* @deprecated Replaced by {@link IExtensionRegistry#getExtension(String, String, String)}.
*/
@Deprecated
public IExtension getExtension(String pluginId, String extensionPointName, String extensionId);
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
* @deprecated Replaced by {@link IExtensionRegistry#getExtensionPoint(String)}.
*/
@Deprecated
public IExtensionPoint getExtensionPoint(String extensionPointId);
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
* @deprecated Replaced by {@link IExtensionRegistry#getExtensionPoint(String, String)}.
*/
@Deprecated
public IExtensionPoint getExtensionPoint(String pluginId, String extensionPointName);
/**
* As the org.eclipse.core.runtime.compatibility plug-in has been removed in
* Eclipse 4.6 this method is not supported anymore.
*
* @deprecated Replaced by {@link IExtensionRegistry#getExtensionPoints()}.
*/
@Deprecated
public IExtensionPoint[] getExtensionPoints();
}