public interface IRegistryEventListener extends EventListener
This interface can be used without OSGi running.
Clients may implement this interface.
IExtensionRegistry.addListener(IRegistryEventListener, String)
Modifier and Type | Method and Description |
---|---|
void |
added(IExtension[] extensions)
Notifies this listener that extensions were added to the registry.
|
void |
added(IExtensionPoint[] extensionPoints)
Notifies this listener that extension points were added to the registry.
|
void |
removed(IExtension[] extensions)
Notifies this listener that extensions were removed from the registry.
|
void |
removed(IExtensionPoint[] extensionPoints)
Notifies this listener that extension points were removed from the registry.
|
void added(IExtension[] extensions)
The extensions supplied as the argument are valid only for the duration of the invocation of this method.
extensions
- extensions added to the registryvoid removed(IExtension[] extensions)
The extensions supplied as the argument are valid only for the duration of the invocation of this method.
extensions
- extensions removed from the registryvoid added(IExtensionPoint[] extensionPoints)
The extension points supplied as the argument are valid only for the duration of the invocation of this method.
extensionPoints
- extension points added to the registryvoid removed(IExtensionPoint[] extensionPoints)
The extension points supplied as the argument are valid only for the duration of the invocation of this method.
extensionPoints
- extension points removed from the registry
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.