1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.units.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.units.UnitCarryingElement; |
28 | import de.uka.ipd.sdq.units.UnitsPackage; |
29 | |
30 | /** |
31 | * This is the item provider adapter for a {@link de.uka.ipd.sdq.units.UnitCarryingElement} object. |
32 | * <!-- begin-user-doc --> |
33 | * <!-- end-user-doc --> |
34 | * @generated |
35 | */ |
36 | public class UnitCarryingElementItemProvider |
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 UnitCarryingElementItemProvider(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 | addUnitPropertyDescriptor(object); |
73 | addUnitSpecificationPropertyDescriptor(object); |
74 | } |
75 | return itemPropertyDescriptors; |
76 | } |
77 | |
78 | /** |
79 | * This adds a property descriptor for the Unit feature. |
80 | * <!-- begin-user-doc --> |
81 | * <!-- end-user-doc --> |
82 | * @generated |
83 | */ |
84 | protected void addUnitPropertyDescriptor(Object object) { |
85 | itemPropertyDescriptors.add |
86 | (createItemPropertyDescriptor |
87 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
88 | getResourceLocator(), |
89 | getString("_UI_UnitCarryingElement_unit_feature"), |
90 | getString("_UI_PropertyDescriptor_description", "_UI_UnitCarryingElement_unit_feature", "_UI_UnitCarryingElement_type"), |
91 | UnitsPackage.Literals.UNIT_CARRYING_ELEMENT__UNIT, |
92 | true, |
93 | false, |
94 | true, |
95 | null, |
96 | null, |
97 | null)); |
98 | } |
99 | |
100 | /** |
101 | * This adds a property descriptor for the Unit Specification feature. |
102 | * <!-- begin-user-doc --> |
103 | * <!-- end-user-doc --> |
104 | * @generated |
105 | */ |
106 | protected void addUnitSpecificationPropertyDescriptor(Object object) { |
107 | itemPropertyDescriptors.add |
108 | (createItemPropertyDescriptor |
109 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
110 | getResourceLocator(), |
111 | getString("_UI_UnitCarryingElement_unitSpecification_feature"), |
112 | getString("_UI_PropertyDescriptor_description", "_UI_UnitCarryingElement_unitSpecification_feature", "_UI_UnitCarryingElement_type"), |
113 | UnitsPackage.Literals.UNIT_CARRYING_ELEMENT__UNIT_SPECIFICATION, |
114 | true, |
115 | false, |
116 | false, |
117 | ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, |
118 | null, |
119 | null)); |
120 | } |
121 | |
122 | /** |
123 | * This returns the label text for the adapted class. |
124 | * <!-- begin-user-doc --> |
125 | * <!-- end-user-doc --> |
126 | * @generated |
127 | */ |
128 | @Override |
129 | public String getText(Object object) { |
130 | String label = ((UnitCarryingElement)object).getUnitSpecification(); |
131 | return label == null || label.length() == 0 ? |
132 | getString("_UI_UnitCarryingElement_type") : |
133 | getString("_UI_UnitCarryingElement_type") + " " + label; |
134 | } |
135 | |
136 | /** |
137 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
138 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
139 | * <!-- begin-user-doc --> |
140 | * <!-- end-user-doc --> |
141 | * @generated |
142 | */ |
143 | @Override |
144 | public void notifyChanged(Notification notification) { |
145 | updateChildren(notification); |
146 | |
147 | switch (notification.getFeatureID(UnitCarryingElement.class)) { |
148 | case UnitsPackage.UNIT_CARRYING_ELEMENT__UNIT_SPECIFICATION: |
149 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); |
150 | return; |
151 | } |
152 | super.notifyChanged(notification); |
153 | } |
154 | |
155 | /** |
156 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
157 | * that can be created under this object. |
158 | * <!-- begin-user-doc --> |
159 | * <!-- end-user-doc --> |
160 | * @generated |
161 | */ |
162 | @Override |
163 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
164 | super.collectNewChildDescriptors(newChildDescriptors, object); |
165 | } |
166 | |
167 | /** |
168 | * Return the resource locator for this item provider's resources. |
169 | * <!-- begin-user-doc --> |
170 | * <!-- end-user-doc --> |
171 | * @generated |
172 | */ |
173 | @Override |
174 | public ResourceLocator getResourceLocator() { |
175 | return UnitsEditPlugin.INSTANCE; |
176 | } |
177 | |
178 | } |