/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /* * Copyright (c) 2005 Borland Software Corporation * * 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: * Dmitri Stadnik (Borland) - initial API and implementation */ package org.reuseware.application.taipan.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.edit.provider.ComposeableAdapterFactory; import org.eclipse.emf.edit.provider.IEditingDomainItemProvider; import org.eclipse.emf.edit.provider.IItemLabelProvider; import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; import org.eclipse.emf.edit.provider.IItemPropertySource; import org.eclipse.emf.edit.provider.IStructuredItemContentProvider; import org.eclipse.emf.edit.provider.ITreeItemContentProvider; import org.eclipse.emf.edit.provider.ItemPropertyDescriptor; import org.eclipse.emf.edit.provider.ViewerNotification; import org.reuseware.application.taipan.Route; import org.reuseware.application.taipan.TaiPanPackage; /** * This is the item provider adapter for a {@link org.reuseware.application.taipan.Route} object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public class RouteItemProvider extends DestinationTypeItemProvider implements IEditingDomainItemProvider, IStructuredItemContentProvider, ITreeItemContentProvider, IItemLabelProvider, IItemPropertySource { /** * This constructs an instance from a factory and a notifier. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public RouteItemProvider(AdapterFactory adapterFactory) { super(adapterFactory); } /** * This returns the property descriptors for the adapted class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { if (itemPropertyDescriptors == null) { super.getPropertyDescriptors(object); addSourcePropertyDescriptor(object); addDestinationPropertyDescriptor(object); addDescriptionPropertyDescriptor(object); addReliabilityPropertyDescriptor(object); } return itemPropertyDescriptors; } /** * This adds a property descriptor for the Source feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addSourcePropertyDescriptor(Object object) { itemPropertyDescriptors .add(createItemPropertyDescriptor( ((ComposeableAdapterFactory) adapterFactory) .getRootAdapterFactory(), getResourceLocator(), getString("_UI_Route_source_feature"), //$NON-NLS-1$ getString( "_UI_PropertyDescriptor_description", "_UI_Route_source_feature", "_UI_Route_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ TaiPanPackage.Literals.ROUTE__SOURCE, true, false, false, null, null, null)); } /** * This adds a property descriptor for the Destination feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addDestinationPropertyDescriptor(Object object) { itemPropertyDescriptors .add(createItemPropertyDescriptor( ((ComposeableAdapterFactory) adapterFactory) .getRootAdapterFactory(), getResourceLocator(), getString("_UI_Route_destination_feature"), //$NON-NLS-1$ getString( "_UI_PropertyDescriptor_description", "_UI_Route_destination_feature", "_UI_Route_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ TaiPanPackage.Literals.ROUTE__DESTINATION, true, false, false, null, null, null)); } /** * This adds a property descriptor for the Description feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addDescriptionPropertyDescriptor(Object object) { itemPropertyDescriptors .add(createItemPropertyDescriptor( ((ComposeableAdapterFactory) adapterFactory) .getRootAdapterFactory(), getResourceLocator(), getString("_UI_Route_description_feature"), //$NON-NLS-1$ getString( "_UI_PropertyDescriptor_description", "_UI_Route_description_feature", "_UI_Route_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ TaiPanPackage.Literals.ROUTE__DESCRIPTION, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Reliability feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addReliabilityPropertyDescriptor(Object object) { itemPropertyDescriptors .add(createItemPropertyDescriptor( ((ComposeableAdapterFactory) adapterFactory) .getRootAdapterFactory(), getResourceLocator(), getString("_UI_Route_reliability_feature"), //$NON-NLS-1$ getString( "_UI_PropertyDescriptor_description", "_UI_Route_reliability_feature", "_UI_Route_type"), //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ TaiPanPackage.Literals.ROUTE__RELIABILITY, true, false, false, ItemPropertyDescriptor.REAL_VALUE_IMAGE, null, null)); } /** * This returns Route.gif. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object getImage(Object object) { return overlayImage(object, getResourceLocator().getImage( "full/obj16/Route")); //$NON-NLS-1$ } /** * This returns the label text for the adapted class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String getText(Object object) { String label = ((Route) object).getDescription(); return label == null || label.length() == 0 ? getString("_UI_Route_type") : //$NON-NLS-1$ getString("_UI_Route_type") + " " + label; //$NON-NLS-1$ //$NON-NLS-2$ } /** * This handles model notifications by calling {@link #updateChildren} to update any cached * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void notifyChanged(Notification notification) { updateChildren(notification); switch (notification.getFeatureID(Route.class)) { case TaiPanPackage.ROUTE__DESCRIPTION: case TaiPanPackage.ROUTE__RELIABILITY: fireNotifyChanged(new ViewerNotification(notification, notification .getNotifier(), false, true)); return; } super.notifyChanged(notification); } /** * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children * that can be created under this object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected void collectNewChildDescriptors( Collection<Object> newChildDescriptors, Object object) { super.collectNewChildDescriptors(newChildDescriptors, object); } }