1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package EssentialOCL.provider; |
8 | |
9 | |
10 | import EssentialOCL.EssentialOCLPackage; |
11 | import EssentialOCL.IntegerLiteralExp; |
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 EssentialOCL.IntegerLiteralExp} object. |
31 | * <!-- begin-user-doc --> |
32 | * <!-- end-user-doc --> |
33 | * @generated |
34 | */ |
35 | public class IntegerLiteralExpItemProvider |
36 | extends NumericLiteralExpItemProvider |
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 IntegerLiteralExpItemProvider(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 | addIntegerSymbolPropertyDescriptor(object); |
65 | } |
66 | return itemPropertyDescriptors; |
67 | } |
68 | |
69 | /** |
70 | * This adds a property descriptor for the Integer Symbol feature. |
71 | * <!-- begin-user-doc --> |
72 | * <!-- end-user-doc --> |
73 | * @generated |
74 | */ |
75 | protected void addIntegerSymbolPropertyDescriptor(Object object) { |
76 | itemPropertyDescriptors.add |
77 | (createItemPropertyDescriptor |
78 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
79 | getResourceLocator(), |
80 | getString("_UI_IntegerLiteralExp_integerSymbol_feature"), |
81 | getString("_UI_PropertyDescriptor_description", "_UI_IntegerLiteralExp_integerSymbol_feature", "_UI_IntegerLiteralExp_type"), |
82 | EssentialOCLPackage.Literals.INTEGER_LITERAL_EXP__INTEGER_SYMBOL, |
83 | true, |
84 | false, |
85 | false, |
86 | ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, |
87 | null, |
88 | null)); |
89 | } |
90 | |
91 | /** |
92 | * This returns IntegerLiteralExp.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/IntegerLiteralExp")); |
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 | String label = ((IntegerLiteralExp)object).getName(); |
111 | return label == null || label.length() == 0 ? |
112 | getString("_UI_IntegerLiteralExp_type") : |
113 | getString("_UI_IntegerLiteralExp_type") + " " + label; |
114 | } |
115 | |
116 | /** |
117 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
118 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
119 | * <!-- begin-user-doc --> |
120 | * <!-- end-user-doc --> |
121 | * @generated |
122 | */ |
123 | @Override |
124 | public void notifyChanged(Notification notification) { |
125 | updateChildren(notification); |
126 | |
127 | switch (notification.getFeatureID(IntegerLiteralExp.class)) { |
128 | case EssentialOCLPackage.INTEGER_LITERAL_EXP__INTEGER_SYMBOL: |
129 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); |
130 | return; |
131 | } |
132 | super.notifyChanged(notification); |
133 | } |
134 | |
135 | /** |
136 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
137 | * that can be created under this object. |
138 | * <!-- begin-user-doc --> |
139 | * <!-- end-user-doc --> |
140 | * @generated |
141 | */ |
142 | @Override |
143 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
144 | super.collectNewChildDescriptors(newChildDescriptors, object); |
145 | } |
146 | |
147 | } |