1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package EMOF.provider; |
8 | |
9 | |
10 | import EMOF.EMOFPackage; |
11 | import EMOF.TypedElement; |
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 | |
27 | /** |
28 | * This is the item provider adapter for a {@link EMOF.TypedElement} object. |
29 | * <!-- begin-user-doc --> |
30 | * <!-- end-user-doc --> |
31 | * @generated |
32 | */ |
33 | public class TypedElementItemProvider |
34 | extends NamedElementItemProvider |
35 | implements |
36 | IEditingDomainItemProvider, |
37 | IStructuredItemContentProvider, |
38 | ITreeItemContentProvider, |
39 | IItemLabelProvider, |
40 | IItemPropertySource { |
41 | /** |
42 | * This constructs an instance from a factory and a notifier. |
43 | * <!-- begin-user-doc --> |
44 | * <!-- end-user-doc --> |
45 | * @generated |
46 | */ |
47 | public TypedElementItemProvider(AdapterFactory adapterFactory) { |
48 | super(adapterFactory); |
49 | } |
50 | |
51 | /** |
52 | * This returns the property descriptors for the adapted class. |
53 | * <!-- begin-user-doc --> |
54 | * <!-- end-user-doc --> |
55 | * @generated |
56 | */ |
57 | @Override |
58 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
59 | if (itemPropertyDescriptors == null) { |
60 | super.getPropertyDescriptors(object); |
61 | |
62 | addTypePropertyDescriptor(object); |
63 | } |
64 | return itemPropertyDescriptors; |
65 | } |
66 | |
67 | /** |
68 | * This adds a property descriptor for the Type feature. |
69 | * <!-- begin-user-doc --> |
70 | * <!-- end-user-doc --> |
71 | * @generated |
72 | */ |
73 | protected void addTypePropertyDescriptor(Object object) { |
74 | itemPropertyDescriptors.add |
75 | (createItemPropertyDescriptor |
76 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
77 | getResourceLocator(), |
78 | getString("_UI_TypedElement_type_feature"), |
79 | getString("_UI_PropertyDescriptor_description", "_UI_TypedElement_type_feature", "_UI_TypedElement_type"), |
80 | EMOFPackage.Literals.TYPED_ELEMENT__TYPE, |
81 | true, |
82 | false, |
83 | true, |
84 | null, |
85 | null, |
86 | null)); |
87 | } |
88 | |
89 | /** |
90 | * This returns the label text for the adapted class. |
91 | * <!-- begin-user-doc --> |
92 | * <!-- end-user-doc --> |
93 | * @generated |
94 | */ |
95 | @Override |
96 | public String getText(Object object) { |
97 | String label = ((TypedElement)object).getName(); |
98 | return label == null || label.length() == 0 ? |
99 | getString("_UI_TypedElement_type") : |
100 | getString("_UI_TypedElement_type") + " " + label; |
101 | } |
102 | |
103 | /** |
104 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
105 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
106 | * <!-- begin-user-doc --> |
107 | * <!-- end-user-doc --> |
108 | * @generated |
109 | */ |
110 | @Override |
111 | public void notifyChanged(Notification notification) { |
112 | updateChildren(notification); |
113 | super.notifyChanged(notification); |
114 | } |
115 | |
116 | /** |
117 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
118 | * that can be created under this object. |
119 | * <!-- begin-user-doc --> |
120 | * <!-- end-user-doc --> |
121 | * @generated |
122 | */ |
123 | @Override |
124 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
125 | super.collectNewChildDescriptors(newChildDescriptors, object); |
126 | } |
127 | |
128 | } |