Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.wsdl/src-wsdl/org/eclipse/wst/wsdl/internal/extensibility/ExtensibilityElementFactoryRegistryImpl.java')
-rw-r--r--bundles/org.eclipse.wst.wsdl/src-wsdl/org/eclipse/wst/wsdl/internal/extensibility/ExtensibilityElementFactoryRegistryImpl.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.wsdl/src-wsdl/org/eclipse/wst/wsdl/internal/extensibility/ExtensibilityElementFactoryRegistryImpl.java b/bundles/org.eclipse.wst.wsdl/src-wsdl/org/eclipse/wst/wsdl/internal/extensibility/ExtensibilityElementFactoryRegistryImpl.java
new file mode 100644
index 000000000..fbbc01408
--- /dev/null
+++ b/bundles/org.eclipse.wst.wsdl/src-wsdl/org/eclipse/wst/wsdl/internal/extensibility/ExtensibilityElementFactoryRegistryImpl.java
@@ -0,0 +1,45 @@
+/*******************************************************************************
+ * 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.internal.extensibility;
+
+import java.util.HashMap;
+
+import org.eclipse.wst.wsdl.util.ExtensibilityElementFactory;
+import org.eclipse.wst.wsdl.util.ExtensibilityElementFactoryRegistry;
+
+
+public class ExtensibilityElementFactoryRegistryImpl implements ExtensibilityElementFactoryRegistry
+{
+ protected HashMap map = new HashMap();
+
+ public void put(String namespace, ExtensibilityElementFactoryDescriptor descriptor)
+ {
+ map.put(namespace, descriptor);
+ }
+
+ public ExtensibilityElementFactory getExtensibilityElementFactory(String namespace)
+ {
+ ExtensibilityElementFactory result = null;
+ ExtensibilityElementFactoryDescriptor descriptor = (ExtensibilityElementFactoryDescriptor)map.get(namespace);
+ if (descriptor != null)
+ {
+ result = descriptor.getExtensiblityElementFactory();
+ }
+ return result;
+ }
+
+ public void registerFactory(String namespace, ExtensibilityElementFactory factory)
+ {
+ ExtensibilityElementFactoryDescriptor descriptor = new ExtensibilityElementFactoryDescriptor(null,namespace,null);
+ descriptor.setExtensiblityElementFactory(factory);
+ map.put(namespace,descriptor);
+ }
+}

Back to the top