1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.pipesandfilters.provider; |
8 | |
9 | |
10 | import de.uka.ipd.sdq.pipesandfilters.Recorder; |
11 | |
12 | import java.util.Collection; |
13 | import java.util.List; |
14 | |
15 | import org.eclipse.emf.common.notify.AdapterFactory; |
16 | import org.eclipse.emf.common.notify.Notification; |
17 | |
18 | import org.eclipse.emf.edit.provider.IEditingDomainItemProvider; |
19 | import org.eclipse.emf.edit.provider.IItemLabelProvider; |
20 | import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; |
21 | import org.eclipse.emf.edit.provider.IItemPropertySource; |
22 | import org.eclipse.emf.edit.provider.IStructuredItemContentProvider; |
23 | import org.eclipse.emf.edit.provider.ITreeItemContentProvider; |
24 | |
25 | /** |
26 | * This is the item provider adapter for a {@link de.uka.ipd.sdq.pipesandfilters.Recorder} object. |
27 | * <!-- begin-user-doc --> |
28 | * <!-- end-user-doc --> |
29 | * @generated |
30 | */ |
31 | public class RecorderItemProvider |
32 | extends PipeElementItemProvider |
33 | implements |
34 | IEditingDomainItemProvider, |
35 | IStructuredItemContentProvider, |
36 | ITreeItemContentProvider, |
37 | IItemLabelProvider, |
38 | IItemPropertySource { |
39 | /** |
40 | * This constructs an instance from a factory and a notifier. |
41 | * <!-- begin-user-doc --> |
42 | * <!-- end-user-doc --> |
43 | * @generated |
44 | */ |
45 | public RecorderItemProvider(AdapterFactory adapterFactory) { |
46 | super(adapterFactory); |
47 | } |
48 | |
49 | /** |
50 | * This returns the property descriptors for the adapted class. |
51 | * <!-- begin-user-doc --> |
52 | * <!-- end-user-doc --> |
53 | * @generated |
54 | */ |
55 | @Override |
56 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
57 | if (itemPropertyDescriptors == null) { |
58 | super.getPropertyDescriptors(object); |
59 | |
60 | } |
61 | return itemPropertyDescriptors; |
62 | } |
63 | |
64 | /** |
65 | * This returns the label text for the adapted class. |
66 | * <!-- begin-user-doc --> |
67 | * <!-- end-user-doc --> |
68 | * @generated |
69 | */ |
70 | @Override |
71 | public String getText(Object object) { |
72 | String label = ((Recorder)object).getId(); |
73 | return label == null || label.length() == 0 ? |
74 | getString("_UI_Recorder_type") : |
75 | getString("_UI_Recorder_type") + " " + label; |
76 | } |
77 | |
78 | /** |
79 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
80 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
81 | * <!-- begin-user-doc --> |
82 | * <!-- end-user-doc --> |
83 | * @generated |
84 | */ |
85 | @Override |
86 | public void notifyChanged(Notification notification) { |
87 | updateChildren(notification); |
88 | super.notifyChanged(notification); |
89 | } |
90 | |
91 | /** |
92 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
93 | * that can be created under this object. |
94 | * <!-- begin-user-doc --> |
95 | * <!-- end-user-doc --> |
96 | * @generated |
97 | */ |
98 | @Override |
99 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
100 | super.collectNewChildDescriptors(newChildDescriptors, object); |
101 | } |
102 | |
103 | } |