blob: 5c7d396a03953268a5f553e1eee54d522265bb0a [file] [log] [blame]
/*******************************************************************************
* 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.viewers;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IEditorPart;
import org.eclipse.wst.wsdl.BindingFault;
import org.eclipse.wst.wsdl.BindingInput;
import org.eclipse.wst.wsdl.BindingOutput;
import org.eclipse.wst.wsdl.ui.internal.WSDLEditorPlugin;
public class BindingInputOutputFaultViewer extends NamedComponentViewer
{
public BindingInputOutputFaultViewer(Composite parent, IEditorPart editorPart)
{
super(parent, editorPart);
}
protected String getHeadingText()
{
String result = "";
if (input instanceof BindingInput)
{
result = WSDLEditorPlugin.getWSDLString("_UI_LABEL_BINDING_INPUT");
}
else if (input instanceof BindingOutput)
{
result = WSDLEditorPlugin.getWSDLString("_UI_LABEL_BINDING_OUTPUT");
}
else if (input instanceof BindingFault)
{
result = WSDLEditorPlugin.getWSDLString("_UI_LABEL_BINDING_FAULT");
}
return result;
}
}