Skip to main content
summaryrefslogtreecommitdiffstats
blob: 31c4802820d8fefa161f585c607a4618f7656f49 (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
108
109
/*******************************************************************************
 * Copyright (c) 2001, 2006 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.adapters.basic;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.wsdl.BindingOperation;
import org.eclipse.wst.wsdl.Operation;
import org.eclipse.wst.wsdl.ui.internal.WSDLEditorPlugin;
import org.eclipse.wst.wsdl.ui.internal.actions.OpenInNewEditor;
import org.eclipse.wst.wsdl.ui.internal.adapters.WSDLBaseAdapter;
import org.eclipse.wst.wsdl.ui.internal.asd.actions.ShowPropertiesViewAction;
import org.eclipse.wst.wsdl.ui.internal.asd.facade.IBindingOperation;
import org.eclipse.wst.wsdl.ui.internal.asd.facade.IOperation;
import org.eclipse.wst.wsdl.ui.internal.asd.outline.ITreeElement;
import org.eclipse.wst.wsdl.ui.internal.util.ComponentReferenceUtil;

public class W11BindingOperation extends WSDLBaseAdapter implements IBindingOperation, ITreeElement
{
  
  public IOperation getOperation()
  {
    BindingOperation bindingOperation = (BindingOperation)target;
    Operation operation = ComponentReferenceUtil.computeOperation(bindingOperation);    
    return operation != null ? (IOperation)createAdapter(operation) : null;
  }
  
  public List getBindingMessages()
  {
    List list = new ArrayList();
    BindingOperation bindingOperation = (BindingOperation)target;
    if (bindingOperation.getEBindingInput() != null)
    {  
      list.add(bindingOperation.getEBindingInput());
    }
    if (bindingOperation.getEBindingOutput() != null)
    {  
      list.add(bindingOperation.getEBindingOutput());
    }     
    list.addAll(bindingOperation.getEBindingFaults());
    List result = new ArrayList();
    populateAdapterList(list, result);
    return result;
  }
  
  public String getName()
  {
    BindingOperation bindingOperation = (BindingOperation)target;
    Operation operation = bindingOperation.getEOperation();
    return operation != null ? operation.getName() : null;
  }

  public List getExtensiblityObjects()
  {
    return Collections.EMPTY_LIST;
  }

  public ITreeElement[] getChildren()
  {
    List list = getBindingMessages();
    ITreeElement[] result = new ITreeElement[list.size()];
    list.toArray(result);
    return result;
  }
  
  public boolean hasChildren() {
	  if (getBindingMessages().size() > 0) {
		  return true;
	  }
	  
	  return false;
  }
  
  public ITreeElement getParent() {
	  return null;
  }

  public Image getImage()
  {
    String imageName = "icons/operationbinding_obj.gif"; //$NON-NLS-1$
    return WSDLEditorPlugin.getInstance().getImage(imageName);
  }

  public String getText()
  {
    return "binding operation";
  }
  
  public String[] getActions(Object object) {    
    Collection actionIDs = new ArrayList();
    actionIDs.add(ShowPropertiesViewAction.ID);
    if (isReadOnly()) {
      actionIDs.add(OpenInNewEditor.ID);
    }
    return (String [])actionIDs.toArray(new String[0]);
  }
}

Back to the top