1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.fzi.se.quality.qualityannotation.provider; |
8 | |
9 | |
10 | import de.fzi.se.quality.qualityannotation.LimitedDeviationPrecision; |
11 | import de.fzi.se.quality.qualityannotation.QualityAnnotationPackage; |
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 | import org.eclipse.emf.edit.provider.ItemPropertyDescriptor; |
27 | import org.eclipse.emf.edit.provider.ViewerNotification; |
28 | |
29 | /** |
30 | * This is the item provider adapter for a {@link de.fzi.se.quality.qualityannotation.LimitedDeviationPrecision} object. |
31 | * <!-- begin-user-doc --> |
32 | * <!-- end-user-doc --> |
33 | * @generated |
34 | */ |
35 | public class LimitedDeviationPrecisionItemProvider |
36 | extends PrecisionItemProvider |
37 | implements |
38 | IEditingDomainItemProvider, |
39 | IStructuredItemContentProvider, |
40 | ITreeItemContentProvider, |
41 | IItemLabelProvider, |
42 | IItemPropertySource { |
43 | /** |
44 | * This constructs an instance from a factory and a notifier. |
45 | * <!-- begin-user-doc --> |
46 | * <!-- end-user-doc --> |
47 | * @generated |
48 | */ |
49 | public LimitedDeviationPrecisionItemProvider(AdapterFactory adapterFactory) { |
50 | super(adapterFactory); |
51 | } |
52 | |
53 | /** |
54 | * This returns the property descriptors for the adapted class. |
55 | * <!-- begin-user-doc --> |
56 | * <!-- end-user-doc --> |
57 | * @generated |
58 | */ |
59 | @Override |
60 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
61 | if (itemPropertyDescriptors == null) { |
62 | super.getPropertyDescriptors(object); |
63 | |
64 | addAbsolutePropertyDescriptor(object); |
65 | addRelativePropertyDescriptor(object); |
66 | } |
67 | return itemPropertyDescriptors; |
68 | } |
69 | |
70 | /** |
71 | * This adds a property descriptor for the Absolute feature. |
72 | * <!-- begin-user-doc --> |
73 | * <!-- end-user-doc --> |
74 | * @generated |
75 | */ |
76 | protected void addAbsolutePropertyDescriptor(Object object) { |
77 | itemPropertyDescriptors.add |
78 | (createItemPropertyDescriptor |
79 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
80 | getResourceLocator(), |
81 | getString("_UI_LimitedDeviationPrecision_absolute_feature"), |
82 | getString("_UI_PropertyDescriptor_description", "_UI_LimitedDeviationPrecision_absolute_feature", "_UI_LimitedDeviationPrecision_type"), |
83 | QualityAnnotationPackage.Literals.LIMITED_DEVIATION_PRECISION__ABSOLUTE, |
84 | true, |
85 | false, |
86 | false, |
87 | ItemPropertyDescriptor.REAL_VALUE_IMAGE, |
88 | null, |
89 | null)); |
90 | } |
91 | |
92 | /** |
93 | * This adds a property descriptor for the Relative feature. |
94 | * <!-- begin-user-doc --> |
95 | * <!-- end-user-doc --> |
96 | * @generated |
97 | */ |
98 | protected void addRelativePropertyDescriptor(Object object) { |
99 | itemPropertyDescriptors.add |
100 | (createItemPropertyDescriptor |
101 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
102 | getResourceLocator(), |
103 | getString("_UI_LimitedDeviationPrecision_relative_feature"), |
104 | getString("_UI_PropertyDescriptor_description", "_UI_LimitedDeviationPrecision_relative_feature", "_UI_LimitedDeviationPrecision_type"), |
105 | QualityAnnotationPackage.Literals.LIMITED_DEVIATION_PRECISION__RELATIVE, |
106 | true, |
107 | false, |
108 | false, |
109 | ItemPropertyDescriptor.REAL_VALUE_IMAGE, |
110 | null, |
111 | null)); |
112 | } |
113 | |
114 | /** |
115 | * This returns LimitedDeviationPrecision.gif. |
116 | * <!-- begin-user-doc --> |
117 | * <!-- end-user-doc --> |
118 | * @generated |
119 | */ |
120 | @Override |
121 | public Object getImage(Object object) { |
122 | return overlayImage(object, getResourceLocator().getImage("full/obj16/LimitedDeviationPrecision")); |
123 | } |
124 | |
125 | /** |
126 | * This returns the label text for the adapted class. |
127 | * <!-- begin-user-doc --> |
128 | * <!-- end-user-doc --> |
129 | * @generated |
130 | */ |
131 | @Override |
132 | public String getText(Object object) { |
133 | String label = ((LimitedDeviationPrecision)object).getId(); |
134 | return label == null || label.length() == 0 ? |
135 | getString("_UI_LimitedDeviationPrecision_type") : |
136 | getString("_UI_LimitedDeviationPrecision_type") + " " + label; |
137 | } |
138 | |
139 | /** |
140 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
141 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
142 | * <!-- begin-user-doc --> |
143 | * <!-- end-user-doc --> |
144 | * @generated |
145 | */ |
146 | @Override |
147 | public void notifyChanged(Notification notification) { |
148 | updateChildren(notification); |
149 | |
150 | switch (notification.getFeatureID(LimitedDeviationPrecision.class)) { |
151 | case QualityAnnotationPackage.LIMITED_DEVIATION_PRECISION__ABSOLUTE: |
152 | case QualityAnnotationPackage.LIMITED_DEVIATION_PRECISION__RELATIVE: |
153 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); |
154 | return; |
155 | } |
156 | super.notifyChanged(notification); |
157 | } |
158 | |
159 | /** |
160 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
161 | * that can be created under this object. |
162 | * <!-- begin-user-doc --> |
163 | * <!-- end-user-doc --> |
164 | * @generated |
165 | */ |
166 | @Override |
167 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
168 | super.collectNewChildDescriptors(newChildDescriptors, object); |
169 | } |
170 | |
171 | } |