blob: 2ca62d14371c0b12ec8e6b8efd4d05a6bf470318 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 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.jst.j2ee.internal.webservice.provider;
import java.util.Collection;
import java.util.List;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.util.ResourceLocator;
import org.eclipse.jst.j2ee.common.internal.provider.QNameItemProvider;
import org.eclipse.jst.j2ee.internal.webservice.plugin.WebServicePlugin;
import org.eclipse.jst.j2ee.webservice.wsdd.WSDLPort;
/**
* This is the item provider adpater for a {@link org.eclipse.jst.j2ee.internal.internal.webservice.wsdd.WSDLPort}object.
* <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
public class WSDLPortItemProvider extends QNameItemProvider{
/**
* This constructs an instance from a factory and a notifier. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
public WSDLPortItemProvider(AdapterFactory adapterFactory) {
super(adapterFactory);
}
/**
* This returns the property descriptors for the adapted class. <!-- begin-user-doc --> <!--
* end-user-doc -->
*
* @generated
*/
@Override
public List getPropertyDescriptors(Object object) {
if (itemPropertyDescriptors == null) {
super.getPropertyDescriptors(object);
}
return itemPropertyDescriptors;
}
/**
* This returns WSDLPort.gif. <!-- begin-user-doc --> <!-- end-user-doc -->
*/
@Override
public Object getImage(Object object) {
return getResourceLocator().getImage("icons/full/obj16/wsdl.gif"); //$NON-NLS-1$
}
/**
* This returns the label text for the adapted class. <!-- begin-user-doc --> <!-- end-user-doc
* -->
*
* @generated
*/
/*
* public String getText(Object object) { String label = ((WSDLPort)object).getCombinedQName();
* return label == null || label.length() == 0 ? getString("_UI_WSDLPort_type") :
* getString("_UI_WSDLPort_type") + " " + label; }
*/
/**
* This returns the label text for the adapted class. <!-- begin-user-doc --> <!-- end-user-doc
* -->
*
* @non-generated
*/
@Override
public String getText(Object object) {
WSDLPort wsdlport = (WSDLPort) object;
String nsURI = wsdlport.getNamespaceURI();
String localpart = wsdlport.getLocalPart();
if (nsURI == null || nsURI.length() == 0 || localpart == null || localpart.length() == 0)
return getString("%_UI_WSDLPort_type"); //$NON-NLS-1$
StringBuffer label = new StringBuffer();
label.append(nsURI);
label.append("#"); //$NON-NLS-1$
label.append(localpart);
return label.toString();
}
/**
* This handles notification by calling {@link #fireNotifyChanged fireNotifyChanged}. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @generated
*/
@Override
public void notifyChanged(Notification notification) {
super.notifyChanged(notification);
}
/**
* This adds to the collection of {@link org.eclipse.emf.edit.command.CommandParameter}s
* describing all of the children that can be created under this object. <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
protected void collectNewChildDescriptors(Collection newChildDescriptors, Object object) {
super.collectNewChildDescriptors(newChildDescriptors, object);
}
/**
* Return the resource locator for this item provider's resources. <!-- begin-user-doc --> <!--
* end-user-doc -->
*/
@Override
public ResourceLocator getResourceLocator() {
return WebServicePlugin.getInstance();
}
}