Skip to main content
summaryrefslogtreecommitdiffstats
blob: fd6c2537b37d1c0967af4b506b66c34595816a7a (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
/*******************************************************************************
 * Copyright (c) 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 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 * IBM Corporation - initial API and implementation
 * yyyymmdd bug      Email and other contact information
 * -------- -------- -----------------------------------------------------------
 * 20060525   142281 joan@ca.ibm.com - Joan Haggarty
 *******************************************************************************/
package org.eclipse.jst.ws.internal.consumption.ui.widgets;

import org.eclipse.core.resources.IProject;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.wst.command.internal.env.ui.widgets.AbstractSelectionDialog;
import org.eclipse.wst.command.internal.env.ui.widgets.PageInfo;

public class WSDLSelectionDialog extends AbstractSelectionDialog {
	
	private String titleText_;
	private String wsUri_;
	private String componentName_;
	private IProject project_;
	
	public WSDLSelectionDialog(Shell parent, PageInfo pageInfo) {
		super(parent, pageInfo);
		titleText_ = pageInfo.getPageName();
	}

	protected void callSetters()
	{		
		((WSDLSelectionWidgetWrapper)getWidget()).setComponentName(componentName_);
		((WSDLSelectionWidgetWrapper)getWidget()).setProject(project_);
		((WSDLSelectionWidgetWrapper)getWidget()).setWebServiceURI(wsUri_);
	}
	
	public void setComponentName(String componentName)
	{
         componentName_ = componentName;      	   
	}
	
	public String getComponentName()
	{
         return componentName_ ;      	   
	}
	
	public void setProject(IProject project)
	{
		project_ = project;
	}
	
	public void setWebServiceURI(String wsUri)
	{
		wsUri_ = wsUri;
	}	
	 
	  protected void setShellStyle(int newShellStyle)
	  {
	    super.setShellStyle( newShellStyle | SWT.RESIZE );  
	  }

	  protected void configureShell(Shell newShell)
	  {
	    newShell.setText(titleText_);   
	    super.configureShell(newShell);
	  }

	  public String getDisplayableSelectionString() {
		  
		 return ((WSDLSelectionWidgetWrapper)getWidget()).getObjectSelectionDisplayableString();
	}
	  
	  public IStructuredSelection getObjectSelection() {
		  return ((WSDLSelectionWidgetWrapper)getWidget()).getObjectSelection();
	}
	 
	  public String getWebServiceURI()
	  {
		  return wsUri_;
	  }
	  
	  public IProject getProject(){
		  return project_;
	  }

      public boolean close() {
        setComponentName(((WSDLSelectionWidgetWrapper)getWidget()).getComponentName());
        setProject(((WSDLSelectionWidgetWrapper)getWidget()).getProject());
        setWebServiceURI(((WSDLSelectionWidgetWrapper)getWidget()).getWebServiceURI());
    	return super.close();
    }
}

Back to the top