1 | /** |
2 | * Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany |
3 | * |
4 | * $Id$ |
5 | */ |
6 | package de.uka.ipd.sdq.pcm.seff.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.ecore.EStructuralFeature; |
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.ViewerNotification; |
22 | |
23 | import de.uka.ipd.sdq.pcm.parameter.ParameterFactory; |
24 | import de.uka.ipd.sdq.pcm.seff.CallReturnAction; |
25 | import de.uka.ipd.sdq.pcm.seff.SeffPackage; |
26 | |
27 | /** |
28 | * This is the item provider adapter for a {@link de.uka.ipd.sdq.pcm.seff.CallReturnAction} object. |
29 | * <!-- begin-user-doc --> |
30 | * <!-- end-user-doc --> |
31 | * @generated |
32 | */ |
33 | public class CallReturnActionItemProvider |
34 | extends CallActionItemProvider |
35 | implements |
36 | IEditingDomainItemProvider, |
37 | IStructuredItemContentProvider, |
38 | ITreeItemContentProvider, |
39 | IItemLabelProvider, |
40 | IItemPropertySource { |
41 | /** |
42 | * <!-- begin-user-doc --> |
43 | * <!-- end-user-doc --> |
44 | * @generated |
45 | */ |
46 | public static final String copyright = "Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany"; |
47 | |
48 | /** |
49 | * This constructs an instance from a factory and a notifier. |
50 | * <!-- begin-user-doc --> |
51 | * <!-- end-user-doc --> |
52 | * @generated |
53 | */ |
54 | public CallReturnActionItemProvider(AdapterFactory adapterFactory) { |
55 | super(adapterFactory); |
56 | } |
57 | |
58 | /** |
59 | * This returns the property descriptors for the adapted class. |
60 | * <!-- begin-user-doc --> |
61 | * <!-- end-user-doc --> |
62 | * @generated |
63 | */ |
64 | @Override |
65 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
66 | if (itemPropertyDescriptors == null) { |
67 | super.getPropertyDescriptors(object); |
68 | |
69 | } |
70 | return itemPropertyDescriptors; |
71 | } |
72 | |
73 | /** |
74 | * This specifies how to implement {@link #getChildren} and is used to deduce an appropriate feature for an |
75 | * {@link org.eclipse.emf.edit.command.AddCommand}, {@link org.eclipse.emf.edit.command.RemoveCommand} or |
76 | * {@link org.eclipse.emf.edit.command.MoveCommand} in {@link #createCommand}. |
77 | * <!-- begin-user-doc --> |
78 | * <!-- end-user-doc --> |
79 | * @generated |
80 | */ |
81 | @Override |
82 | public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) { |
83 | if (childrenFeatures == null) { |
84 | super.getChildrenFeatures(object); |
85 | childrenFeatures.add(SeffPackage.Literals.CALL_RETURN_ACTION__RETURN_VARIABLE_USAGE_CALL_RETURN_ACTION); |
86 | } |
87 | return childrenFeatures; |
88 | } |
89 | |
90 | /** |
91 | * <!-- begin-user-doc --> |
92 | * <!-- end-user-doc --> |
93 | * @generated |
94 | */ |
95 | @Override |
96 | protected EStructuralFeature getChildFeature(Object object, Object child) { |
97 | // Check the type of the specified child object and return the proper feature to use for |
98 | // adding (see {@link AddCommand}) it as a child. |
99 | |
100 | return super.getChildFeature(object, child); |
101 | } |
102 | |
103 | /** |
104 | * This returns CallReturnAction.gif. |
105 | * <!-- begin-user-doc --> |
106 | * <!-- end-user-doc --> |
107 | * @generated |
108 | */ |
109 | @Override |
110 | public Object getImage(Object object) { |
111 | return overlayImage(object, getResourceLocator().getImage("full/obj16/CallReturnAction")); |
112 | } |
113 | |
114 | /** |
115 | * This returns the label text for the adapted class. |
116 | * <!-- begin-user-doc --> |
117 | * <!-- end-user-doc --> |
118 | * @generated |
119 | */ |
120 | @Override |
121 | public String getText(Object object) { |
122 | return getString("_UI_CallReturnAction_type"); |
123 | } |
124 | |
125 | /** |
126 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
127 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
128 | * <!-- begin-user-doc --> |
129 | * <!-- end-user-doc --> |
130 | * @generated |
131 | */ |
132 | @Override |
133 | public void notifyChanged(Notification notification) { |
134 | updateChildren(notification); |
135 | |
136 | switch (notification.getFeatureID(CallReturnAction.class)) { |
137 | case SeffPackage.CALL_RETURN_ACTION__RETURN_VARIABLE_USAGE_CALL_RETURN_ACTION: |
138 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false)); |
139 | return; |
140 | } |
141 | super.notifyChanged(notification); |
142 | } |
143 | |
144 | /** |
145 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
146 | * that can be created under this object. |
147 | * <!-- begin-user-doc --> |
148 | * <!-- end-user-doc --> |
149 | * @generated |
150 | */ |
151 | @Override |
152 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
153 | super.collectNewChildDescriptors(newChildDescriptors, object); |
154 | |
155 | newChildDescriptors.add |
156 | (createChildParameter |
157 | (SeffPackage.Literals.CALL_RETURN_ACTION__RETURN_VARIABLE_USAGE_CALL_RETURN_ACTION, |
158 | ParameterFactory.eINSTANCE.createVariableUsage())); |
159 | } |
160 | |
161 | /** |
162 | * This returns the label text for {@link org.eclipse.emf.edit.command.CreateChildCommand}. |
163 | * <!-- begin-user-doc --> |
164 | * <!-- end-user-doc --> |
165 | * @generated |
166 | */ |
167 | @Override |
168 | public String getCreateChildText(Object owner, Object feature, Object child, Collection<?> selection) { |
169 | Object childFeature = feature; |
170 | Object childObject = child; |
171 | |
172 | boolean qualify = |
173 | childFeature == SeffPackage.Literals.CALL_ACTION__INPUT_VARIABLE_USAGES_CALL_ACTION || |
174 | childFeature == SeffPackage.Literals.CALL_RETURN_ACTION__RETURN_VARIABLE_USAGE_CALL_RETURN_ACTION; |
175 | |
176 | if (qualify) { |
177 | return getString |
178 | ("_UI_CreateChild_text2", |
179 | new Object[] { getTypeText(childObject), getFeatureText(childFeature), getTypeText(owner) }); |
180 | } |
181 | return super.getCreateChildText(owner, feature, child, selection); |
182 | } |
183 | |
184 | } |