Skip to main content
summaryrefslogtreecommitdiffstats
blob: f8e2435bcbf4f1eecdc7b763b7662963c6bb991b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*******************************************************************************
 * 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();
    }
  }
}

Back to the top