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