Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.wsdl.ui/src/org/eclipse/wst/wsdl/ui/internal/extension/WSDLEditorExtensionRegistry.java')
-rw-r--r--bundles/org.eclipse.wst.wsdl.ui/src/org/eclipse/wst/wsdl/ui/internal/extension/WSDLEditorExtensionRegistry.java107
1 files changed, 0 insertions, 107 deletions
diff --git a/bundles/org.eclipse.wst.wsdl.ui/src/org/eclipse/wst/wsdl/ui/internal/extension/WSDLEditorExtensionRegistry.java b/bundles/org.eclipse.wst.wsdl.ui/src/org/eclipse/wst/wsdl/ui/internal/extension/WSDLEditorExtensionRegistry.java
deleted file mode 100644
index f8e2435bc..000000000
--- a/bundles/org.eclipse.wst.wsdl.ui/src/org/eclipse/wst/wsdl/ui/internal/extension/WSDLEditorExtensionRegistry.java
+++ /dev/null
@@ -1,107 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2001, 2004 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.wst.wsdl.ui.internal.extension;
-
-import java.util.ArrayList;
-import java.util.Iterator;
-import java.util.List;
-
-import org.eclipse.wst.wsdl.ui.internal.WSDLEditor;
-
-public class WSDLEditorExtensionRegistry
-{
- //protected List classNameClassLoaderPairList = new ArrayList();
- //protected HashMap treeProviderMap = new HashMap();
- protected List registeredExtensionList = new ArrayList();
-
- public WSDLEditorExtensionRegistry()
- {
- add(new WSDLEditor.BuiltInWSDLEditorExtension());
- }
-
- //public ExtensibilityItemTreeProvider getExtensibilityItemTreeProvider(String namespaceURI)
- //{
- // return (ExtensibilityItemTreeProvider)treeProviderMap.get(namespaceURI);
- //}
-
- //public void putExtensibilityItemTreeProvider(String namespaceURI, ExtensibilityItemTreeProvider treeProvider)
- //{
- // treeProviderMap.put(namespaceURI, treeProvider);
- //}
-
- public List getRegisteredExtensions()
- {
- return registeredExtensionList;
- }
-
- public WSDLEditorExtension getApplicableExtension(int type, Object object)
- {
- WSDLEditorExtension result = null;
- for (Iterator i = getRegisteredExtensions().iterator(); i.hasNext(); )
- {
- WSDLEditorExtension extension = (WSDLEditorExtension)i.next();
- if (extension.isExtensionTypeSupported(type) && extension.isApplicable(object))
- {
- result = extension;
- break;
- }
- }
- return result;
- }
-
- public WSDLEditorExtension[] getRegisteredExtensions(int type)
- {
- List list = new ArrayList();
- for (Iterator i = getRegisteredExtensions().iterator(); i.hasNext(); )
- {
- WSDLEditorExtension extension = (WSDLEditorExtension)i.next();
- if (extension.isExtensionTypeSupported(type))
- {
- list.add(extension);
- }
- }
-
- WSDLEditorExtension[] result = new WSDLEditorExtension[list.size()];
- int count = 0;
- for (Iterator i = list.iterator(); i.hasNext(); )
- {
- WSDLEditorExtension extension = (WSDLEditorExtension)i.next();
- result[count] = extension;
- count++;
- }
- return result;
- }
-
- public void addAsFirst(WSDLEditorExtension extension)
- {
- getRegisteredExtensions().add(0, extension);
- }
-
- public void add(WSDLEditorExtension extension)
- {
- getRegisteredExtensions().add(extension);
- }
-
- public void add(ClassLoader classLoader, String className)
- {
- // TODO... consider defered instantiation of WSDLEditorExtensions
- try
- {
- Class theClass = classLoader != null ? classLoader.loadClass(className) : Class.forName(className);
- WSDLEditorExtension extension = (WSDLEditorExtension)theClass.newInstance();
- registeredExtensionList.add(extension);
- }
- catch (Exception e)
- {
- e.printStackTrace();
- }
- }
-} \ No newline at end of file

Back to the top