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.RawRecorder; |
11 | import de.uka.ipd.sdq.pipesandfilters.pipesandfiltersFactory; |
12 | import de.uka.ipd.sdq.pipesandfilters.pipesandfiltersPackage; |
13 | |
14 | import java.util.Collection; |
15 | import java.util.List; |
16 | |
17 | import org.eclipse.emf.common.notify.AdapterFactory; |
18 | import org.eclipse.emf.common.notify.Notification; |
19 | |
20 | import org.eclipse.emf.ecore.EStructuralFeature; |
21 | |
22 | import org.eclipse.emf.edit.provider.IEditingDomainItemProvider; |
23 | import org.eclipse.emf.edit.provider.IItemLabelProvider; |
24 | import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; |
25 | import org.eclipse.emf.edit.provider.IItemPropertySource; |
26 | import org.eclipse.emf.edit.provider.IStructuredItemContentProvider; |
27 | import org.eclipse.emf.edit.provider.ITreeItemContentProvider; |
28 | import org.eclipse.emf.edit.provider.ViewerNotification; |
29 | |
30 | /** |
31 | * This is the item provider adapter for a {@link de.uka.ipd.sdq.pipesandfilters.RawRecorder} object. |
32 | * <!-- begin-user-doc --> |
33 | * <!-- end-user-doc --> |
34 | * @generated |
35 | */ |
36 | public class RawRecorderItemProvider |
37 | extends RecorderItemProvider |
38 | implements |
39 | IEditingDomainItemProvider, |
40 | IStructuredItemContentProvider, |
41 | ITreeItemContentProvider, |
42 | IItemLabelProvider, |
43 | IItemPropertySource { |
44 | /** |
45 | * This constructs an instance from a factory and a notifier. |
46 | * <!-- begin-user-doc --> |
47 | * <!-- end-user-doc --> |
48 | * @generated |
49 | */ |
50 | public RawRecorderItemProvider(AdapterFactory adapterFactory) { |
51 | super(adapterFactory); |
52 | } |
53 | |
54 | /** |
55 | * This returns the property descriptors for the adapted class. |
56 | * <!-- begin-user-doc --> |
57 | * <!-- end-user-doc --> |
58 | * @generated |
59 | */ |
60 | @Override |
61 | public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) { |
62 | if (itemPropertyDescriptors == null) { |
63 | super.getPropertyDescriptors(object); |
64 | |
65 | } |
66 | return itemPropertyDescriptors; |
67 | } |
68 | |
69 | /** |
70 | * This specifies how to implement {@link #getChildren} and is used to deduce an appropriate feature for an |
71 | * {@link org.eclipse.emf.edit.command.AddCommand}, {@link org.eclipse.emf.edit.command.RemoveCommand} or |
72 | * {@link org.eclipse.emf.edit.command.MoveCommand} in {@link #createCommand}. |
73 | * <!-- begin-user-doc --> |
74 | * <!-- end-user-doc --> |
75 | * @generated |
76 | */ |
77 | @Override |
78 | public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) { |
79 | if (childrenFeatures == null) { |
80 | super.getChildrenFeatures(object); |
81 | childrenFeatures.add(pipesandfiltersPackage.Literals.RAW_RECORDER__WRITER); |
82 | } |
83 | return childrenFeatures; |
84 | } |
85 | |
86 | /** |
87 | * <!-- begin-user-doc --> |
88 | * <!-- end-user-doc --> |
89 | * @generated |
90 | */ |
91 | @Override |
92 | protected EStructuralFeature getChildFeature(Object object, Object child) { |
93 | // Check the type of the specified child object and return the proper feature to use for |
94 | // adding (see {@link AddCommand}) it as a child. |
95 | |
96 | return super.getChildFeature(object, child); |
97 | } |
98 | |
99 | /** |
100 | * This returns RawRecorder.gif. |
101 | * <!-- begin-user-doc --> |
102 | * <!-- end-user-doc --> |
103 | * @generated |
104 | */ |
105 | @Override |
106 | public Object getImage(Object object) { |
107 | return overlayImage(object, getResourceLocator().getImage("full/obj16/RawRecorder")); |
108 | } |
109 | |
110 | /** |
111 | * This returns the label text for the adapted class. |
112 | * <!-- begin-user-doc --> |
113 | * <!-- end-user-doc --> |
114 | * @generated |
115 | */ |
116 | @Override |
117 | public String getText(Object object) { |
118 | String label = ((RawRecorder)object).getId(); |
119 | return label == null || label.length() == 0 ? |
120 | getString("_UI_RawRecorder_type") : |
121 | getString("_UI_RawRecorder_type") + " " + label; |
122 | } |
123 | |
124 | /** |
125 | * This handles model notifications by calling {@link #updateChildren} to update any cached |
126 | * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. |
127 | * <!-- begin-user-doc --> |
128 | * <!-- end-user-doc --> |
129 | * @generated |
130 | */ |
131 | @Override |
132 | public void notifyChanged(Notification notification) { |
133 | updateChildren(notification); |
134 | |
135 | switch (notification.getFeatureID(RawRecorder.class)) { |
136 | case pipesandfiltersPackage.RAW_RECORDER__WRITER: |
137 | fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false)); |
138 | return; |
139 | } |
140 | super.notifyChanged(notification); |
141 | } |
142 | |
143 | /** |
144 | * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children |
145 | * that can be created under this object. |
146 | * <!-- begin-user-doc --> |
147 | * <!-- end-user-doc --> |
148 | * @generated |
149 | */ |
150 | @Override |
151 | protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) { |
152 | super.collectNewChildDescriptors(newChildDescriptors, object); |
153 | |
154 | newChildDescriptors.add |
155 | (createChildParameter |
156 | (pipesandfiltersPackage.Literals.RAW_RECORDER__WRITER, |
157 | pipesandfiltersFactory.eINSTANCE.createEDP2Writer())); |
158 | } |
159 | |
160 | } |