Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'providers/bundles/org.eclipse.ecf.provider.xmpp/src/org/eclipse/ecf/provider/xmpp/IProviderDirectory.java')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.xmpp/src/org/eclipse/ecf/provider/xmpp/IProviderDirectory.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.xmpp/src/org/eclipse/ecf/provider/xmpp/IProviderDirectory.java b/providers/bundles/org.eclipse.ecf.provider.xmpp/src/org/eclipse/ecf/provider/xmpp/IProviderDirectory.java
deleted file mode 100644
index 9972a94c3..000000000
--- a/providers/bundles/org.eclipse.ecf.provider.xmpp/src/org/eclipse/ecf/provider/xmpp/IProviderDirectory.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2005 Jean-Michel Lemieux, Jeff McAffer 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
- *
- * Hyperbola is an RCP application developed for the book
- * Eclipse Rich Client Platform -
- * Designing, Coding, and Packaging Java Applications
- * (http://eclipsercp.org)
- * Contributors:
- * Jean-Michel Lemieux and Jeff McAffer - initial implementation
- *******************************************************************************/
-package org.eclipse.ecf.provider.xmpp;
-
-import org.eclipse.core.runtime.IBundleGroup;
-
-public interface IProviderDirectory {
-
- public void installProvider(IBundleGroup provider);
-
- public IBundleGroup[] getProviders();
-
- public IBundleGroup getProvider(String elementName, String namespace, String type);
-
- public IBundleGroup getProvider(String id, String version);
-}

Back to the top