1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.sensitivity.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.edit.provider.ComposeableAdapterFactory; |
16 | import org.eclipse.emf.edit.provider.IEditingDomainItemProvider; |
17 | import org.eclipse.emf.edit.provider.IItemLabelProvider; |
18 | import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; |
19 | import org.eclipse.emf.edit.provider.IItemPropertySource; |
20 | import org.eclipse.emf.edit.provider.IStructuredItemContentProvider; |
21 | import org.eclipse.emf.edit.provider.ITreeItemContentProvider; |
22 | import org.eclipse.emf.edit.provider.ItemPropertyDescriptor; |
23 | import org.eclipse.emf.edit.provider.ViewerNotification; |
24 | |
25 | import de.uka.ipd.sdq.sensitivity.SensitivityPackage; |
26 | import de.uka.ipd.sdq.sensitivity.StringParameterSequence; |
27 | |
28 | /** |
29 | * This is the item provider adapter for a {@link de.uka.ipd.sdq.sensitivity.StringParameterSequence} object. |
30 | * <!-- begin-user-doc --> |
31 | * <!-- end-user-doc --> |
32 | * @generated |
33 | */ |
34 | public class StringParameterSequenceItemProvider |
35 | extends SensitivityParameterVariationItemProvider |
36 | implements |
37 | IEditingDomainItemProvider, |
38 | IStructuredItemContentProvider, |
39 | ITreeItemContentProvider, |
40 | IItemLabelProvider, |
41 | IItemPropertySource { |
42 | /** |
43 | * This constructs an instance from a factory and a notifier. |
44 | * <!-- begin-user-doc --> |
45 | * <!-- end-user-doc --> |
46 | * @generated |
47 | */ |
48 | public StringParameterSequenceItemProvider(AdapterFactory adapterFactory) { |
49 | super(adapterFactory); |
50 | } |
51 | |
52 | /** |
53 | * This returns the property descriptors for the adapted class. |
54 | * <!-- begin-user-doc --> |
55 | * <!-- end-user-doc --> |
56 | * @generated |
57 | */ |
58 | @Override |
59 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
60 | if (itemPropertyDescriptors == null) { |
61 | super.getPropertyDescriptors(object); |
62 | |
63 | addStringValuesPropertyDescriptor(object); |
64 | } |
65 | return itemPropertyDescriptors; |
66 | } |
67 | |
68 | /** |
69 | * This adds a property descriptor for the String Values feature. |
70 | * <!-- begin-user-doc --> |
71 | * <!-- end-user-doc --> |
72 | * @generated |
73 | */ |
74 | protected void addStringValuesPropertyDescriptor(Object object) { |
75 | itemPropertyDescriptors.add |
76 | (createItemPropertyDescriptor |
77 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
78 | getResourceLocator(), |
79 | getString("_UI_StringParameterSequence_stringValues_feature"), |
80 | getString("_UI_PropertyDescriptor_description", "_UI_StringParameterSequence_stringValues_feature", "_UI_StringParameterSequence_type"), |
81 | SensitivityPackage.Literals.STRING_PARAMETER_SEQUENCE__STRING_VALUES, |
82 | true, |
83 | false, |
84 | false, |
85 | ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, |
86 | null, |
87 | null)); |
88 | } |
89 | |
90 | /** |
91 | * This returns StringParameterSequence.gif. |
92 | * <!-- begin-user-doc --> |
93 | * <!-- end-user-doc --> |
94 | * @generated |
95 | */ |
96 | @Override |
97 | public Object getImage(Object object) { |
98 | return overlayImage(object, getResourceLocator().getImage("full/obj16/StringParameterSequence")); |
99 | } |
100 | |
101 | /** |
102 | * This returns the label text for the adapted class. |
103 | * <!-- begin-user-doc --> |
104 | * <!-- end-user-doc --> |
105 | * @generated not |
106 | */ |
107 | @Override |
108 | public String getText(Object object) { |
109 | String stringSequence = "UNSPECIFIED"; |
110 | try { |
111 | org.eclipse.emf.common.util.EList<String> values = ((StringParameterSequence)object).getStringValues(); |
112 | stringSequence = values.get(0) + " ... " + values.get(values.size() - 1); |
113 | } catch(Exception e) {} |
114 | return stringSequence + " <" + getString("_UI_StringParameterSequence_type") + ">"; |
115 | } |
116 | |
117 | /** |
118 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
119 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
120 | * <!-- begin-user-doc --> |
121 | * <!-- end-user-doc --> |
122 | * @generated |
123 | */ |
124 | @Override |
125 | public void notifyChanged(Notification notification) { |
126 | updateChildren(notification); |
127 | |
128 | switch (notification.getFeatureID(StringParameterSequence.class)) { |
129 | case SensitivityPackage.STRING_PARAMETER_SEQUENCE__STRING_VALUES: |
130 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); |
131 | return; |
132 | } |
133 | super.notifyChanged(notification); |
134 | } |
135 | |
136 | /** |
137 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
138 | * that can be created under this object. |
139 | * <!-- begin-user-doc --> |
140 | * <!-- end-user-doc --> |
141 | * @generated |
142 | */ |
143 | @Override |
144 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
145 | super.collectNewChildDescriptors(newChildDescriptors, object); |
146 | } |
147 | |
148 | } |