/** * Copyright (c) 2015-2016 Inria * 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: * - Fawaz Paraiso <fawaz.paraiso@inria.fr> * - Philippe Merle <philippe.merle@inria.fr> */ package org.occiware.clouddesigner.occi.hypervisor.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.emf.edit.provider.ComposeableAdapterFactory; import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; import org.eclipse.emf.edit.provider.ItemPropertyDescriptor; import org.eclipse.emf.edit.provider.ViewerNotification; import org.occiware.clouddesigner.occi.OCCIPackage; import org.occiware.clouddesigner.occi.hypervisor.Disk; import org.occiware.clouddesigner.occi.hypervisor.HypervisorFactory; import org.occiware.clouddesigner.occi.hypervisor.HypervisorPackage; import org.occiware.clouddesigner.occi.infrastructure.provider.StorageItemProvider; /** * This is the item provider adapter for a {@link org.occiware.clouddesigner.occi.hypervisor.Disk} object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public class DiskItemProvider extends StorageItemProvider { /** * This constructs an instance from a factory and a notifier. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public DiskItemProvider(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); addNamePropertyDescriptor(object); addTypePropertyDescriptor(object); addDevicePropertyDescriptor(object); addSourcePropertyDescriptor(object); addReadonlyPropertyDescriptor(object); addTarget_devPropertyDescriptor(object); addTarget_busPropertyDescriptor(object); } return itemPropertyDescriptors; } /** * This adds a property descriptor for the Name feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addNamePropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_Disk_name_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Disk_name_feature", "_UI_Disk_type"), HypervisorPackage.Literals.DISK__NAME, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Type feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addTypePropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_Disk_type_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Disk_type_feature", "_UI_Disk_type"), HypervisorPackage.Literals.DISK__TYPE, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Device feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addDevicePropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_Disk_device_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Disk_device_feature", "_UI_Disk_type"), HypervisorPackage.Literals.DISK__DEVICE, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * 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_Disk_source_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Disk_source_feature", "_UI_Disk_type"), HypervisorPackage.Literals.DISK__SOURCE, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Readonly feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addReadonlyPropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_Disk_readonly_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Disk_readonly_feature", "_UI_Disk_type"), HypervisorPackage.Literals.DISK__READONLY, true, false, false, ItemPropertyDescriptor.BOOLEAN_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Target dev feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addTarget_devPropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_Disk_target_dev_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Disk_target_dev_feature", "_UI_Disk_type"), HypervisorPackage.Literals.DISK__TARGET_DEV, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This adds a property descriptor for the Target bus feature. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected void addTarget_busPropertyDescriptor(Object object) { itemPropertyDescriptors.add (createItemPropertyDescriptor (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), getResourceLocator(), getString("_UI_Disk_target_bus_feature"), getString("_UI_PropertyDescriptor_description", "_UI_Disk_target_bus_feature", "_UI_Disk_type"), HypervisorPackage.Literals.DISK__TARGET_BUS, true, false, false, ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, null, null)); } /** * This returns Disk.gif. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object getImage(Object object) { return overlayImage(object, getResourceLocator().getImage("full/obj16/Disk")); } /** * This returns the label text for the adapted class. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String getText(Object object) { String label = ((Disk)object).getName(); return label == null || label.length() == 0 ? getString("_UI_Disk_type") : getString("_UI_Disk_type") + " " + label; } /** * 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(Disk.class)) { case HypervisorPackage.DISK__NAME: case HypervisorPackage.DISK__TYPE: case HypervisorPackage.DISK__DEVICE: case HypervisorPackage.DISK__SOURCE: case HypervisorPackage.DISK__READONLY: case HypervisorPackage.DISK__TARGET_DEV: case HypervisorPackage.DISK__TARGET_BUS: 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); newChildDescriptors.add (createChildParameter (OCCIPackage.Literals.RESOURCE__LINKS, HypervisorFactory.eINSTANCE.createContains())); } /** * Return the resource locator for this item provider's resources. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public ResourceLocator getResourceLocator() { return HypervisorEditPlugin.INSTANCE; } }