Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IRegistryChangeEvent.java')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IRegistryChangeEvent.java65
1 files changed, 0 insertions, 65 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IRegistryChangeEvent.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IRegistryChangeEvent.java
deleted file mode 100644
index 410c6e08d..000000000
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/runtime/IRegistryChangeEvent.java
+++ /dev/null
@@ -1,65 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2003, 2008 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.core.runtime;
-
-/**
- * Registry change events describe changes to the extension registry.
- * <p>
- * This interface can be used without OSGi running.
- * </p><p>
- * This interface is not intended to be implemented by clients.
- * </p>
- * @since 3.0
- * @see IExtensionRegistry
- * @see IRegistryChangeListener
- * @noimplement This interface is not intended to be implemented by clients.
- */
-public interface IRegistryChangeEvent {
- /**
- * Returns all extension deltas for all hosts. Returns an empty array if there are
- * no deltas in this event.
- *
- * @return all extension deltas
- */
- public IExtensionDelta[] getExtensionDeltas();
-
- /**
- * Returns all extension deltas for the given namespace. Returns an empty array if there are
- * no deltas in this event for any extension points provided in the given namespace.
- *
- * @param namespace the namespace for the extension deltas
- * @return all extension deltas for the given namespace
- */
- public IExtensionDelta[] getExtensionDeltas(String namespace);
-
- /**
- * Returns all the extension deltas for the given namespace and extension point. Returns an
- * empty array if there are no deltas in this event for the given extension point.
- *
- * @param namespace the namespace for the extension point
- * @param extensionPoint the simple identifier of the
- * extension point (e.g. <code>"builders"</code>)
- * @return all extension deltas for the given extension point
- */
- public IExtensionDelta[] getExtensionDeltas(String namespace, String extensionPoint);
-
- /**
- * Returns the delta for the given namespace, extension point and extension.
- * Returns <code>null</code> if none exists in this event.
- *
- * @param namespace the namespace for the extension point
- * @param extensionPoint the simple identifier of the
- * extension point (e.g. <code>"builders"</code>)
- * @param extension the unique identifier of the extension
- * @return the extension delta, or <code>null</code>
- */
- public IExtensionDelta getExtensionDelta(String namespace, String extensionPoint, String extension);
-}

Back to the top