blob: 93cefa40d7a5e9478cda3eec2db21d1d8db23fb8 [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.outline;
import java.util.HashMap;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.swt.graphics.Image;
import org.eclipse.wst.wsdl.ui.internal.WSDLEditorPlugin;
import org.w3c.dom.Node;
public class SOAPLabelProvider extends LabelProvider
{
protected final static String ADDRESS = "address";
protected final static String BODY = "body";
protected final static String BINDING = "binding";
protected final static String FAULT = "fault";
protected final static String HEADER = "header";
protected final static String HEADER_FAULT = "headerfault";
protected final static String OPERATION = "operation";
protected HashMap map = new HashMap();
public SOAPLabelProvider()
{
map.put(ADDRESS, "icons/soapaddress_obj.gif");
map.put(BINDING, "icons/soapbinding_obj.gif");
map.put(BODY, "icons/soapbody_obj.gif");
map.put(FAULT, "icons/soapfault_obj.gif");
map.put(HEADER, "icons/soapheader_obj.gif");
map.put(HEADER_FAULT, "icons/soapheaderfault_obj.gif");
map.put(OPERATION, "icons/soapoperation_obj.gif");
}
public Image getImage(Object object)
{
Node node = (Node)object;
String imageName = (String)map.get(node.getLocalName());
return imageName != null ? WSDLEditorPlugin.getInstance().getImage(imageName) : null;
}
public String getText(Object object)
{
Node node = (Node)object;
return node.getNodeName();
}
}