Uses of Interface
org.eclipse.core.runtime.IExtension
-
Packages that use IExtension Package Description org.eclipse.core.runtime Provides support for the runtime platform, core utility methods and the extension registry.org.eclipse.core.runtime.dynamichelpers Provides helpers to facilitate the authoring of dynamic plug-ins.org.eclipse.team.ui Provides basic support for managing Team providers.org.eclipse.ui.views.properties Provides the standard Property Sheet view which displays custom properties of the active workbench part's current selection. -
-
Uses of IExtension in org.eclipse.core.runtime
Methods in org.eclipse.core.runtime that return IExtension Modifier and Type Method Description IExtensionIConfigurationElement. getDeclaringExtension()Returns the extension that declares this configuration element.IExtensionIExtensionDelta. getExtension()Returns the affected extension.IExtensionIExtensionPoint. getExtension(String extensionId)Returns the extension with the given unique identifier configured into this extension point, ornullif there is no such extension.IExtensionIExtensionRegistry. getExtension(String extensionId)Returns the specified extension in this extension registry, ornullif there is no such extension.IExtensionIExtensionRegistry. getExtension(String extensionPointId, String extensionId)Returns the specified extension in this extension registry, ornullif there is no such extension.IExtensionIExtensionRegistry. getExtension(String namespace, String extensionPointName, String extensionId)Returns the specified extension in this extension registry, ornullif there is no such extension.IExtension[]IExtensionPoint. getExtensions()Returns all extensions configured into this extension point.IExtension[]IExtensionRegistry. getExtensions(String namespace)Returns all extensions declared in the given namespace.IExtension[]IExtensionRegistry. getExtensions(IContributor contributor)Returns all extensions supplied by the contributor, ornullif there are no such extensions.Methods in org.eclipse.core.runtime with parameters of type IExtension Modifier and Type Method Description voidIRegistryEventListener. added(IExtension[] extensions)Notifies this listener that extensions were added to the registry.voidIRegistryEventListener. removed(IExtension[] extensions)Notifies this listener that extensions were removed from the registry.booleanIExtensionRegistry. removeExtension(IExtension extension, Object token)Removes the given extension from this registry. -
Uses of IExtension in org.eclipse.core.runtime.dynamichelpers
Methods in org.eclipse.core.runtime.dynamichelpers with parameters of type IExtension Modifier and Type Method Description voidIExtensionChangeHandler. addExtension(IExtensionTracker tracker, IExtension extension)This method is called whenever an extension conforming to the extension point filter is being added to the registry.protected voidExtensionTracker. applyAdd(IExtensionChangeHandler handler, IExtension extension)protected voidExtensionTracker. applyRemove(IExtensionChangeHandler handler, IExtension removedExtension, Object[] removedObjects)Object[]ExtensionTracker. getObjects(IExtension element)Object[]IExtensionTracker. getObjects(IExtension extension)Return all the objects that have been associated with the given extension.voidExtensionTracker. registerObject(IExtension element, Object object, int referenceType)voidIExtensionTracker. registerObject(IExtension extension, Object object, int referenceType)Create an association between the given extension and the given object.voidIExtensionChangeHandler. removeExtension(IExtension extension, Object[] objects)This method is called after the removal of an extension.Object[]ExtensionTracker. unregisterObject(IExtension extension)voidExtensionTracker. unregisterObject(IExtension extension, Object object)Object[]IExtensionTracker. unregisterObject(IExtension extension)Remove all the objects associated with the given extension.voidIExtensionTracker. unregisterObject(IExtension extension, Object object)Remove an association between the given extension and the given object. -
Uses of IExtension in org.eclipse.team.ui
Methods in org.eclipse.team.ui with parameters of type IExtension Modifier and Type Method Description static ImageDescriptorTeamImages. getImageDescriptorFromExtension(IExtension extension, String subdirectoryAndFilename)Convenience method to get an image descriptor for an extension. -
Uses of IExtension in org.eclipse.ui.views.properties
Methods in org.eclipse.ui.views.properties with parameters of type IExtension Modifier and Type Method Description voidPropertySheet. added(IExtension[] extensions)voidPropertySheet. removed(IExtension[] extensions)
-