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.common.util.ResourceLocator; |
15 | import org.eclipse.emf.ecore.EStructuralFeature; |
16 | import org.eclipse.emf.edit.provider.ComposeableAdapterFactory; |
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.ViewerNotification; |
24 | |
25 | import de.uka.ipd.sdq.pcm.core.CoreFactory; |
26 | import de.uka.ipd.sdq.pcm.core.entity.provider.EntityItemProvider; |
27 | import de.uka.ipd.sdq.pcm.core.provider.PalladioComponentModelEditPlugin; |
28 | import de.uka.ipd.sdq.pcm.repository.PassiveResource; |
29 | import de.uka.ipd.sdq.pcm.repository.RepositoryPackage; |
30 | |
31 | /** |
32 | * This is the item provider adapter for a {@link de.uka.ipd.sdq.pcm.repository.PassiveResource} object. |
33 | * <!-- begin-user-doc --> |
34 | * <!-- end-user-doc --> |
35 | * @generated |
36 | */ |
37 | public class PassiveResourceItemProvider |
38 | extends EntityItemProvider |
39 | implements |
40 | IEditingDomainItemProvider, |
41 | IStructuredItemContentProvider, |
42 | ITreeItemContentProvider, |
43 | IItemLabelProvider, |
44 | IItemPropertySource { |
45 | /** |
46 | * <!-- begin-user-doc --> |
47 | * <!-- end-user-doc --> |
48 | * @generated |
49 | */ |
50 | public static final String copyright = "Copyright 2005-2009 by SDQ, IPD, University of Karlsruhe, Germany"; |
51 | |
52 | /** |
53 | * This constructs an instance from a factory and a notifier. |
54 | * <!-- begin-user-doc --> |
55 | * <!-- end-user-doc --> |
56 | * @generated |
57 | */ |
58 | public PassiveResourceItemProvider(AdapterFactory adapterFactory) { |
59 | super(adapterFactory); |
60 | } |
61 | |
62 | /** |
63 | * This returns the property descriptors for the adapted class. |
64 | * <!-- begin-user-doc --> |
65 | * <!-- end-user-doc --> |
66 | * @generated |
67 | */ |
68 | @Override |
69 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
70 | if (itemPropertyDescriptors == null) { |
71 | super.getPropertyDescriptors(object); |
72 | |
73 | addResourceTimeoutFailureType__PassiveResourcePropertyDescriptor(object); |
74 | } |
75 | return itemPropertyDescriptors; |
76 | } |
77 | |
78 | /** |
79 | * This adds a property descriptor for the Resource Timeout Failure Type Passive Resource feature. |
80 | * <!-- begin-user-doc --> |
81 | * <!-- end-user-doc --> |
82 | * @generated |
83 | */ |
84 | protected void addResourceTimeoutFailureType__PassiveResourcePropertyDescriptor(Object object) { |
85 | itemPropertyDescriptors.add |
86 | (createItemPropertyDescriptor |
87 | (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), |
88 | getResourceLocator(), |
89 | getString("_UI_PassiveResource_resourceTimeoutFailureType__PassiveResource_feature"), |
90 | getString("_UI_PropertyDescriptor_description", "_UI_PassiveResource_resourceTimeoutFailureType__PassiveResource_feature", "_UI_PassiveResource_type"), |
91 | RepositoryPackage.Literals.PASSIVE_RESOURCE__RESOURCE_TIMEOUT_FAILURE_TYPE_PASSIVE_RESOURCE, |
92 | true, |
93 | false, |
94 | true, |
95 | null, |
96 | null, |
97 | null)); |
98 | } |
99 | |
100 | /** |
101 | * This specifies how to implement {@link #getChildren} and is used to deduce an appropriate feature for an |
102 | * {@link org.eclipse.emf.edit.command.AddCommand}, {@link org.eclipse.emf.edit.command.RemoveCommand} or |
103 | * {@link org.eclipse.emf.edit.command.MoveCommand} in {@link #createCommand}. |
104 | * <!-- begin-user-doc --> |
105 | * <!-- end-user-doc --> |
106 | * @generated |
107 | */ |
108 | @Override |
109 | public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) { |
110 | if (childrenFeatures == null) { |
111 | super.getChildrenFeatures(object); |
112 | childrenFeatures.add(RepositoryPackage.Literals.PASSIVE_RESOURCE__CAPACITY_PASSIVE_RESOURCE); |
113 | } |
114 | return childrenFeatures; |
115 | } |
116 | |
117 | /** |
118 | * <!-- begin-user-doc --> |
119 | * <!-- end-user-doc --> |
120 | * @generated |
121 | */ |
122 | @Override |
123 | protected EStructuralFeature getChildFeature(Object object, Object child) { |
124 | // Check the type of the specified child object and return the proper feature to use for |
125 | // adding (see {@link AddCommand}) it as a child. |
126 | |
127 | return super.getChildFeature(object, child); |
128 | } |
129 | |
130 | /** |
131 | * This returns PassiveResource.gif. |
132 | * <!-- begin-user-doc --> |
133 | * <!-- end-user-doc --> |
134 | * @generated |
135 | */ |
136 | @Override |
137 | public Object getImage(Object object) { |
138 | return overlayImage(object, getResourceLocator().getImage("full/obj16/PassiveResource")); |
139 | } |
140 | |
141 | /** |
142 | * This returns the label text for the adapted class. |
143 | * <!-- begin-user-doc --> |
144 | * <!-- end-user-doc --> |
145 | * @generated |
146 | */ |
147 | @Override |
148 | public String getText(Object object) { |
149 | String label = ((PassiveResource)object).getId(); |
150 | return label == null || label.length() == 0 ? |
151 | getString("_UI_PassiveResource_type") : |
152 | getString("_UI_PassiveResource_type") + " " + label; |
153 | } |
154 | |
155 | /** |
156 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
157 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
158 | * <!-- begin-user-doc --> |
159 | * <!-- end-user-doc --> |
160 | * @generated |
161 | */ |
162 | @Override |
163 | public void notifyChanged(Notification notification) { |
164 | updateChildren(notification); |
165 | |
166 | switch (notification.getFeatureID(PassiveResource.class)) { |
167 | case RepositoryPackage.PASSIVE_RESOURCE__CAPACITY_PASSIVE_RESOURCE: |
168 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false)); |
169 | return; |
170 | } |
171 | super.notifyChanged(notification); |
172 | } |
173 | |
174 | /** |
175 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
176 | * that can be created under this object. |
177 | * <!-- begin-user-doc --> |
178 | * <!-- end-user-doc --> |
179 | * @generated |
180 | */ |
181 | @Override |
182 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
183 | super.collectNewChildDescriptors(newChildDescriptors, object); |
184 | |
185 | newChildDescriptors.add |
186 | (createChildParameter |
187 | (RepositoryPackage.Literals.PASSIVE_RESOURCE__CAPACITY_PASSIVE_RESOURCE, |
188 | CoreFactory.eINSTANCE.createPCMRandomVariable())); |
189 | } |
190 | |
191 | /** |
192 | * Return the resource locator for this item provider's resources. |
193 | * <!-- begin-user-doc --> |
194 | * <!-- end-user-doc --> |
195 | * @generated |
196 | */ |
197 | @Override |
198 | public ResourceLocator getResourceLocator() { |
199 | return PalladioComponentModelEditPlugin.INSTANCE; |
200 | } |
201 | |
202 | } |