1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.pcm.designdecision.provider; |
8 | |
9 | |
10 | import de.uka.ipd.sdq.pcm.designdecision.ContinousRangeChoice; |
11 | import de.uka.ipd.sdq.pcm.designdecision.designdecisionPackage; |
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.uka.ipd.sdq.pcm.designdecision.ContinousRangeChoice} object. |
31 | * <!-- begin-user-doc --> |
32 | * <!-- end-user-doc --> |
33 | * @generated |
34 | */ |
35 | public class ContinousRangeChoiceItemProvider |
36 | extends ChoiceItemProvider |
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 ContinousRangeChoiceItemProvider(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 | addChosenValuePropertyDescriptor(object); |
65 | } |
66 | return itemPropertyDescriptors; |
67 | } |
68 | |
69 | /** |
70 | * This adds a property descriptor for the Chosen Value feature. |
71 | * <!-- begin-user-doc --> |
72 | * <!-- end-user-doc --> |
73 | * @generated |
74 | */ |
75 | protected void addChosenValuePropertyDescriptor(Object object) { |
76 | itemPropertyDescriptors.add |
77 | (createItemPropertyDescriptor |
78 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
79 | getResourceLocator(), |
80 | getString("_UI_ContinousRangeChoice_chosenValue_feature"), |
81 | getString("_UI_PropertyDescriptor_description", "_UI_ContinousRangeChoice_chosenValue_feature", "_UI_ContinousRangeChoice_type"), |
82 | designdecisionPackage.Literals.CONTINOUS_RANGE_CHOICE__CHOSEN_VALUE, |
83 | true, |
84 | false, |
85 | false, |
86 | ItemPropertyDescriptor.REAL_VALUE_IMAGE, |
87 | null, |
88 | null)); |
89 | } |
90 | |
91 | /** |
92 | * This returns ContinousRangeChoice.gif. |
93 | * <!-- begin-user-doc --> |
94 | * <!-- end-user-doc --> |
95 | * @generated |
96 | */ |
97 | @Override |
98 | public Object getImage(Object object) { |
99 | return overlayImage(object, getResourceLocator().getImage("full/obj16/ContinousRangeChoice")); |
100 | } |
101 | |
102 | /** |
103 | * This returns the label text for the adapted class. |
104 | * <!-- begin-user-doc --> |
105 | * <!-- end-user-doc --> |
106 | * @generated |
107 | */ |
108 | @Override |
109 | public String getText(Object object) { |
110 | ContinousRangeChoice continousRangeChoice = (ContinousRangeChoice)object; |
111 | return getString("_UI_ContinousRangeChoice_type") + " " + continousRangeChoice.isActive(); |
112 | } |
113 | |
114 | /** |
115 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
116 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
117 | * <!-- begin-user-doc --> |
118 | * <!-- end-user-doc --> |
119 | * @generated |
120 | */ |
121 | @Override |
122 | public void notifyChanged(Notification notification) { |
123 | updateChildren(notification); |
124 | |
125 | switch (notification.getFeatureID(ContinousRangeChoice.class)) { |
126 | case designdecisionPackage.CONTINOUS_RANGE_CHOICE__CHOSEN_VALUE: |
127 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); |
128 | return; |
129 | } |
130 | super.notifyChanged(notification); |
131 | } |
132 | |
133 | /** |
134 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
135 | * that can be created under this object. |
136 | * <!-- begin-user-doc --> |
137 | * <!-- end-user-doc --> |
138 | * @generated |
139 | */ |
140 | @Override |
141 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
142 | super.collectNewChildDescriptors(newChildDescriptors, object); |
143 | } |
144 | |
145 | } |