| 1 | /** |
| 2 | * <copyright> |
| 3 | * </copyright> |
| 4 | * |
| 5 | * $Id$ |
| 6 | */ |
| 7 | package copyException.provider; |
| 8 | |
| 9 | |
| 10 | import copyException.CopyExceptionPackage; |
| 11 | |
| 12 | import java.util.Collection; |
| 13 | import java.util.List; |
| 14 | |
| 15 | import org.eclipse.emf.common.notify.AdapterFactory; |
| 16 | import org.eclipse.emf.common.notify.Notification; |
| 17 | |
| 18 | import org.eclipse.emf.edit.provider.ComposeableAdapterFactory; |
| 19 | import org.eclipse.emf.edit.provider.IEditingDomainItemProvider; |
| 20 | import org.eclipse.emf.edit.provider.IItemLabelProvider; |
| 21 | import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; |
| 22 | import org.eclipse.emf.edit.provider.IItemPropertySource; |
| 23 | import org.eclipse.emf.edit.provider.IStructuredItemContentProvider; |
| 24 | import org.eclipse.emf.edit.provider.ITreeItemContentProvider; |
| 25 | |
| 26 | /** |
| 27 | * This is the item provider adapter for a {@link copyException.ReplacementException} object. |
| 28 | * <!-- begin-user-doc --> |
| 29 | * <!-- end-user-doc --> |
| 30 | * @generated |
| 31 | */ |
| 32 | public class ReplacementExceptionItemProvider |
| 33 | extends ExceptionItemProvider |
| 34 | implements |
| 35 | IEditingDomainItemProvider, |
| 36 | IStructuredItemContentProvider, |
| 37 | ITreeItemContentProvider, |
| 38 | IItemLabelProvider, |
| 39 | IItemPropertySource { |
| 40 | /** |
| 41 | * This constructs an instance from a factory and a notifier. |
| 42 | * <!-- begin-user-doc --> |
| 43 | * <!-- end-user-doc --> |
| 44 | * @generated |
| 45 | */ |
| 46 | public ReplacementExceptionItemProvider(AdapterFactory adapterFactory) { |
| 47 | super(adapterFactory); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * This returns the property descriptors for the adapted class. |
| 52 | * <!-- begin-user-doc --> |
| 53 | * <!-- end-user-doc --> |
| 54 | * @generated |
| 55 | */ |
| 56 | @Override |
| 57 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
| 58 | if (itemPropertyDescriptors == null) { |
| 59 | super.getPropertyDescriptors(object); |
| 60 | |
| 61 | addObjPropertyDescriptor(object); |
| 62 | } |
| 63 | return itemPropertyDescriptors; |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * This adds a property descriptor for the Obj feature. |
| 68 | * <!-- begin-user-doc --> |
| 69 | * <!-- end-user-doc --> |
| 70 | * @generated |
| 71 | */ |
| 72 | protected void addObjPropertyDescriptor(Object object) { |
| 73 | itemPropertyDescriptors.add |
| 74 | (createItemPropertyDescriptor |
| 75 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
| 76 | getResourceLocator(), |
| 77 | getString("_UI_ReplacementException_obj_feature"), |
| 78 | getString("_UI_PropertyDescriptor_description", "_UI_ReplacementException_obj_feature", "_UI_ReplacementException_type"), |
| 79 | CopyExceptionPackage.Literals.REPLACEMENT_EXCEPTION__OBJ, |
| 80 | true, |
| 81 | false, |
| 82 | true, |
| 83 | null, |
| 84 | null, |
| 85 | null)); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * This returns ReplacementException.gif. |
| 90 | * <!-- begin-user-doc --> |
| 91 | * <!-- end-user-doc --> |
| 92 | * @generated |
| 93 | */ |
| 94 | @Override |
| 95 | public Object getImage(Object object) { |
| 96 | return overlayImage(object, getResourceLocator().getImage("full/obj16/ReplacementException")); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * This returns the label text for the adapted class. |
| 101 | * <!-- begin-user-doc --> |
| 102 | * <!-- end-user-doc --> |
| 103 | * @generated |
| 104 | */ |
| 105 | @Override |
| 106 | public String getText(Object object) { |
| 107 | return getString("_UI_ReplacementException_type"); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
| 112 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
| 113 | * <!-- begin-user-doc --> |
| 114 | * <!-- end-user-doc --> |
| 115 | * @generated |
| 116 | */ |
| 117 | @Override |
| 118 | public void notifyChanged(Notification notification) { |
| 119 | updateChildren(notification); |
| 120 | super.notifyChanged(notification); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
| 125 | * that can be created under this object. |
| 126 | * <!-- begin-user-doc --> |
| 127 | * <!-- end-user-doc --> |
| 128 | * @generated |
| 129 | */ |
| 130 | @Override |
| 131 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
| 132 | super.collectNewChildDescriptors(newChildDescriptors, object); |
| 133 | } |
| 134 | |
| 135 | } |