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