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.ecore.EStructuralFeature; |
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.ItemProviderAdapter; |
24 | import org.eclipse.emf.edit.provider.ViewerNotification; |
25 | |
26 | import de.uka.ipd.sdq.units.UnitRepository; |
27 | import de.uka.ipd.sdq.units.UnitsFactory; |
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.UnitRepository} object. |
32 | * <!-- begin-user-doc --> |
33 | * <!-- end-user-doc --> |
34 | * @generated |
35 | */ |
36 | public class UnitRepositoryItemProvider |
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 UnitRepositoryItemProvider(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 | } |
73 | return itemPropertyDescriptors; |
74 | } |
75 | |
76 | /** |
77 | * This specifies how to implement {@link #getChildren} and is used to deduce an appropriate feature for an |
78 | * {@link org.eclipse.emf.edit.command.AddCommand}, {@link org.eclipse.emf.edit.command.RemoveCommand} or |
79 | * {@link org.eclipse.emf.edit.command.MoveCommand} in {@link #createCommand}. |
80 | * <!-- begin-user-doc --> |
81 | * <!-- end-user-doc --> |
82 | * @generated |
83 | */ |
84 | @Override |
85 | public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) { |
86 | if (childrenFeatures == null) { |
87 | super.getChildrenFeatures(object); |
88 | childrenFeatures.add(UnitsPackage.Literals.UNIT_REPOSITORY__UNITS); |
89 | } |
90 | return childrenFeatures; |
91 | } |
92 | |
93 | /** |
94 | * <!-- begin-user-doc --> |
95 | * <!-- end-user-doc --> |
96 | * @generated |
97 | */ |
98 | @Override |
99 | protected EStructuralFeature getChildFeature(Object object, Object child) { |
100 | // Check the type of the specified child object and return the proper feature to use for |
101 | // adding (see {@link AddCommand}) it as a child. |
102 | |
103 | return super.getChildFeature(object, child); |
104 | } |
105 | |
106 | /** |
107 | * This returns UnitRepository.gif. |
108 | * <!-- begin-user-doc --> |
109 | * <!-- end-user-doc --> |
110 | * @generated |
111 | */ |
112 | @Override |
113 | public Object getImage(Object object) { |
114 | return overlayImage(object, getResourceLocator().getImage("full/obj16/UnitRepository")); |
115 | } |
116 | |
117 | /** |
118 | * This returns the label text for the adapted class. |
119 | * <!-- begin-user-doc --> |
120 | * <!-- end-user-doc --> |
121 | * @generated |
122 | */ |
123 | @Override |
124 | public String getText(Object object) { |
125 | return getString("_UI_UnitRepository_type"); |
126 | } |
127 | |
128 | /** |
129 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
130 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
131 | * <!-- begin-user-doc --> |
132 | * <!-- end-user-doc --> |
133 | * @generated |
134 | */ |
135 | @Override |
136 | public void notifyChanged(Notification notification) { |
137 | updateChildren(notification); |
138 | |
139 | switch (notification.getFeatureID(UnitRepository.class)) { |
140 | case UnitsPackage.UNIT_REPOSITORY__UNITS: |
141 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false)); |
142 | return; |
143 | } |
144 | super.notifyChanged(notification); |
145 | } |
146 | |
147 | /** |
148 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
149 | * that can be created under this object. |
150 | * <!-- begin-user-doc --> |
151 | * <!-- end-user-doc --> |
152 | * @generated |
153 | */ |
154 | @Override |
155 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
156 | super.collectNewChildDescriptors(newChildDescriptors, object); |
157 | |
158 | newChildDescriptors.add |
159 | (createChildParameter |
160 | (UnitsPackage.Literals.UNIT_REPOSITORY__UNITS, |
161 | UnitsFactory.eINSTANCE.createBaseUnit())); |
162 | } |
163 | |
164 | /** |
165 | * Return the resource locator for this item provider's resources. |
166 | * <!-- begin-user-doc --> |
167 | * <!-- end-user-doc --> |
168 | * @generated |
169 | */ |
170 | @Override |
171 | public ResourceLocator getResourceLocator() { |
172 | return UnitsEditPlugin.INSTANCE; |
173 | } |
174 | |
175 | } |