EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][QVTBase.provider]

COVERAGE SUMMARY FOR SOURCE FILE [RuleItemProvider.java]

nameclass, %method, %block, %line, %
RuleItemProvider.java0%   (0/1)0%   (0/9)0%   (0/128)0%   (0/42)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RuleItemProvider0%   (0/1)0%   (0/9)0%   (0/128)0%   (0/42)
RuleItemProvider (AdapterFactory): void 0%   (0/1)0%   (0/4)0%   (0/2)
addOverridesPropertyDescriptor (Object): void 0%   (0/1)0%   (0/28)0%   (0/14)
collectNewChildDescriptors (Collection, Object): void 0%   (0/1)0%   (0/13)0%   (0/6)
getChildFeature (Object, Object): EStructuralFeature 0%   (0/1)0%   (0/5)0%   (0/1)
getChildrenFeatures (Object): Collection 0%   (0/1)0%   (0/15)0%   (0/4)
getPropertyDescriptors (Object): List 0%   (0/1)0%   (0/13)0%   (0/4)
getResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
getText (Object): String 0%   (0/1)0%   (0/26)0%   (0/4)
notifyChanged (Notification): void 0%   (0/1)0%   (0/22)0%   (0/6)

1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package QVTBase.provider;
8 
9 
10import EMOF.provider.NamedElementItemProvider;
11import EMOF.provider.QvtmodelsEditPlugin;
12 
13import QVTBase.QVTBasePackage;
14import QVTBase.Rule;
15 
16import QVTRelation.QVTRelationFactory;
17 
18import java.util.Collection;
19import java.util.List;
20 
21import org.eclipse.emf.common.notify.AdapterFactory;
22import org.eclipse.emf.common.notify.Notification;
23 
24import org.eclipse.emf.common.util.ResourceLocator;
25 
26import org.eclipse.emf.ecore.EStructuralFeature;
27 
28import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
29import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
30import org.eclipse.emf.edit.provider.IItemLabelProvider;
31import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
32import org.eclipse.emf.edit.provider.IItemPropertySource;
33import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
34import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
35import org.eclipse.emf.edit.provider.ViewerNotification;
36 
37/**
38 * This is the item provider adapter for a {@link QVTBase.Rule} object.
39 * <!-- begin-user-doc -->
40 * <!-- end-user-doc -->
41 * @generated
42 */
43public class RuleItemProvider
44        extends NamedElementItemProvider
45        implements
46                IEditingDomainItemProvider,
47                IStructuredItemContentProvider,
48                ITreeItemContentProvider,
49                IItemLabelProvider,
50                IItemPropertySource {
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 RuleItemProvider(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                        addOverridesPropertyDescriptor(object);
73                }
74                return itemPropertyDescriptors;
75        }
76 
77        /**
78         * This adds a property descriptor for the Overrides feature.
79         * <!-- begin-user-doc -->
80         * <!-- end-user-doc -->
81         * @generated
82         */
83        protected void addOverridesPropertyDescriptor(Object object) {
84                itemPropertyDescriptors.add
85                        (createItemPropertyDescriptor
86                                (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
87                                 getResourceLocator(),
88                                 getString("_UI_Rule_overrides_feature"),
89                                 getString("_UI_PropertyDescriptor_description", "_UI_Rule_overrides_feature", "_UI_Rule_type"),
90                                 QVTBasePackage.Literals.RULE__OVERRIDES,
91                                 true,
92                                 false,
93                                 true,
94                                 null,
95                                 null,
96                                 null));
97        }
98 
99        /**
100         * This specifies how to implement {@link #getChildren} and is used to deduce an appropriate feature for an
101         * {@link org.eclipse.emf.edit.command.AddCommand}, {@link org.eclipse.emf.edit.command.RemoveCommand} or
102         * {@link org.eclipse.emf.edit.command.MoveCommand} in {@link #createCommand}.
103         * <!-- begin-user-doc -->
104         * <!-- end-user-doc -->
105         * @generated
106         */
107        @Override
108        public Collection<? extends EStructuralFeature> getChildrenFeatures(Object object) {
109                if (childrenFeatures == null) {
110                        super.getChildrenFeatures(object);
111                        childrenFeatures.add(QVTBasePackage.Literals.RULE__DOMAIN);
112                }
113                return childrenFeatures;
114        }
115 
116        /**
117         * <!-- begin-user-doc -->
118         * <!-- end-user-doc -->
119         * @generated
120         */
121        @Override
122        protected EStructuralFeature getChildFeature(Object object, Object child) {
123                // Check the type of the specified child object and return the proper feature to use for
124                // adding (see {@link AddCommand}) it as a child.
125 
126                return super.getChildFeature(object, child);
127        }
128 
129        /**
130         * This returns the label text for the adapted class.
131         * <!-- begin-user-doc -->
132         * <!-- end-user-doc -->
133         * @generated
134         */
135        @Override
136        public String getText(Object object) {
137                String label = ((Rule)object).getName();
138                return label == null || label.length() == 0 ?
139                        getString("_UI_Rule_type") :
140                        getString("_UI_Rule_type") + " " + label;
141        }
142 
143        /**
144         * This handles model notifications by calling {@link #updateChildren} to update any cached
145         * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
146         * <!-- begin-user-doc -->
147         * <!-- end-user-doc -->
148         * @generated
149         */
150        @Override
151        public void notifyChanged(Notification notification) {
152                updateChildren(notification);
153 
154                switch (notification.getFeatureID(Rule.class)) {
155                        case QVTBasePackage.RULE__DOMAIN:
156                                fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
157                                return;
158                }
159                super.notifyChanged(notification);
160        }
161 
162        /**
163         * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
164         * that can be created under this object.
165         * <!-- begin-user-doc -->
166         * <!-- end-user-doc -->
167         * @generated
168         */
169        @Override
170        protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
171                super.collectNewChildDescriptors(newChildDescriptors, object);
172 
173                newChildDescriptors.add
174                        (createChildParameter
175                                (QVTBasePackage.Literals.RULE__DOMAIN,
176                                 QVTRelationFactory.eINSTANCE.createRelationDomain()));
177        }
178 
179        /**
180         * Return the resource locator for this item provider's resources.
181         * <!-- begin-user-doc -->
182         * <!-- end-user-doc -->
183         * @generated
184         */
185        @Override
186        public ResourceLocator getResourceLocator() {
187                return QvtmodelsEditPlugin.INSTANCE;
188        }
189 
190}

[all classes][QVTBase.provider]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov