1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.probfunction.provider; |
8 | |
9 | |
10 | import java.util.Collection; |
11 | import java.util.List; |
12 | |
13 | import org.eclipse.emf.common.notify.AdapterFactory; |
14 | import org.eclipse.emf.common.notify.Notification; |
15 | import org.eclipse.emf.common.util.ResourceLocator; |
16 | import org.eclipse.emf.edit.provider.ComposeableAdapterFactory; |
17 | import org.eclipse.emf.edit.provider.IEditingDomainItemProvider; |
18 | import org.eclipse.emf.edit.provider.IItemLabelProvider; |
19 | import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; |
20 | import org.eclipse.emf.edit.provider.IItemPropertySource; |
21 | import org.eclipse.emf.edit.provider.IStructuredItemContentProvider; |
22 | import org.eclipse.emf.edit.provider.ITreeItemContentProvider; |
23 | import org.eclipse.emf.edit.provider.ItemPropertyDescriptor; |
24 | import org.eclipse.emf.edit.provider.ItemProviderAdapter; |
25 | import org.eclipse.emf.edit.provider.ViewerNotification; |
26 | |
27 | import de.uka.ipd.sdq.probfunction.ContinuousSample; |
28 | import de.uka.ipd.sdq.probfunction.ProbfunctionPackage; |
29 | |
30 | /** |
31 | * This is the item provider adapter for a {@link de.uka.ipd.sdq.probfunction.ContinuousSample} object. |
32 | * <!-- begin-user-doc --> |
33 | * <!-- end-user-doc --> |
34 | * @generated |
35 | */ |
36 | public class ContinuousSampleItemProvider |
37 | extends ItemProviderAdapter |
38 | implements |
39 | IEditingDomainItemProvider, |
40 | IStructuredItemContentProvider, |
41 | ITreeItemContentProvider, |
42 | IItemLabelProvider, |
43 | IItemPropertySource { |
44 | /** |
45 | * <!-- begin-user-doc --> |
46 | * <!-- end-user-doc --> |
47 | * @generated |
48 | */ |
49 | public static final String copyright = "Copyright 2007-2009, SDQ, IPD, U Karlsruhe"; |
50 | |
51 | /** |
52 | * This constructs an instance from a factory and a notifier. |
53 | * <!-- begin-user-doc --> |
54 | * <!-- end-user-doc --> |
55 | * @generated |
56 | */ |
57 | public ContinuousSampleItemProvider(AdapterFactory adapterFactory) { |
58 | super(adapterFactory); |
59 | } |
60 | |
61 | /** |
62 | * This returns the property descriptors for the adapted class. |
63 | * <!-- begin-user-doc --> |
64 | * <!-- end-user-doc --> |
65 | * @generated |
66 | */ |
67 | @Override |
68 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
69 | if (itemPropertyDescriptors == null) { |
70 | super.getPropertyDescriptors(object); |
71 | |
72 | addValuePropertyDescriptor(object); |
73 | addProbabilityPropertyDescriptor(object); |
74 | } |
75 | return itemPropertyDescriptors; |
76 | } |
77 | |
78 | /** |
79 | * This adds a property descriptor for the Value feature. |
80 | * <!-- begin-user-doc --> |
81 | * <!-- end-user-doc --> |
82 | * @generated |
83 | */ |
84 | protected void addValuePropertyDescriptor(Object object) { |
85 | itemPropertyDescriptors.add |
86 | (createItemPropertyDescriptor |
87 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
88 | getResourceLocator(), |
89 | getString("_UI_ContinuousSample_value_feature"), |
90 | getString("_UI_PropertyDescriptor_description", "_UI_ContinuousSample_value_feature", "_UI_ContinuousSample_type"), |
91 | ProbfunctionPackage.Literals.CONTINUOUS_SAMPLE__VALUE, |
92 | true, |
93 | false, |
94 | false, |
95 | ItemPropertyDescriptor.REAL_VALUE_IMAGE, |
96 | null, |
97 | null)); |
98 | } |
99 | |
100 | /** |
101 | * This adds a property descriptor for the Probability feature. |
102 | * <!-- begin-user-doc --> |
103 | * <!-- end-user-doc --> |
104 | * @generated |
105 | */ |
106 | protected void addProbabilityPropertyDescriptor(Object object) { |
107 | itemPropertyDescriptors.add |
108 | (createItemPropertyDescriptor |
109 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
110 | getResourceLocator(), |
111 | getString("_UI_ContinuousSample_probability_feature"), |
112 | getString("_UI_PropertyDescriptor_description", "_UI_ContinuousSample_probability_feature", "_UI_ContinuousSample_type"), |
113 | ProbfunctionPackage.Literals.CONTINUOUS_SAMPLE__PROBABILITY, |
114 | true, |
115 | false, |
116 | false, |
117 | ItemPropertyDescriptor.REAL_VALUE_IMAGE, |
118 | null, |
119 | null)); |
120 | } |
121 | |
122 | /** |
123 | * This returns ContinuousSample.gif. |
124 | * <!-- begin-user-doc --> |
125 | * <!-- end-user-doc --> |
126 | * @generated |
127 | */ |
128 | @Override |
129 | public Object getImage(Object object) { |
130 | return overlayImage(object, getResourceLocator().getImage("full/obj16/ContinuousSample")); |
131 | } |
132 | |
133 | /** |
134 | * This returns the label text for the adapted class. |
135 | * <!-- begin-user-doc --> |
136 | * <!-- end-user-doc --> |
137 | * @generated |
138 | */ |
139 | @Override |
140 | public String getText(Object object) { |
141 | ContinuousSample continuousSample = (ContinuousSample)object; |
142 | return getString("_UI_ContinuousSample_type") + " " + continuousSample.getValue(); |
143 | } |
144 | |
145 | /** |
146 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
147 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
148 | * <!-- begin-user-doc --> |
149 | * <!-- end-user-doc --> |
150 | * @generated |
151 | */ |
152 | @Override |
153 | public void notifyChanged(Notification notification) { |
154 | updateChildren(notification); |
155 | |
156 | switch (notification.getFeatureID(ContinuousSample.class)) { |
157 | case ProbfunctionPackage.CONTINUOUS_SAMPLE__VALUE: |
158 | case ProbfunctionPackage.CONTINUOUS_SAMPLE__PROBABILITY: |
159 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); |
160 | return; |
161 | } |
162 | super.notifyChanged(notification); |
163 | } |
164 | |
165 | /** |
166 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
167 | * that can be created under this object. |
168 | * <!-- begin-user-doc --> |
169 | * <!-- end-user-doc --> |
170 | * @generated |
171 | */ |
172 | @Override |
173 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
174 | super.collectNewChildDescriptors(newChildDescriptors, object); |
175 | } |
176 | |
177 | /** |
178 | * Return the resource locator for this item provider's resources. |
179 | * <!-- begin-user-doc --> |
180 | * <!-- end-user-doc --> |
181 | * @generated |
182 | */ |
183 | @Override |
184 | public ResourceLocator getResourceLocator() { |
185 | return ProbabilityFunctionEditPlugin.INSTANCE; |
186 | } |
187 | |
188 | } |