EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.fzi.se.quality.parameters.pcm.provider]

COVERAGE SUMMARY FOR SOURCE FILE [PCMInfrastructureOperationReferenceItemProvider.java]

nameclass, %method, %block, %line, %
PCMInfrastructureOperationReferenceItemProvider.java0%   (0/1)0%   (0/9)0%   (0/102)0%   (0/43)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PCMInfrastructureOperationReferenceItemProvider0%   (0/1)0%   (0/9)0%   (0/102)0%   (0/43)
PCMInfrastructureOperationReferenceItemProvider (AdapterFactory): void 0%   (0/1)0%   (0/4)0%   (0/2)
addResourceRequiredRolePropertyDescriptor (Object): void 0%   (0/1)0%   (0/28)0%   (0/14)
addSignaturePropertyDescriptor (Object): void 0%   (0/1)0%   (0/28)0%   (0/14)
collectNewChildDescriptors (Collection, Object): void 0%   (0/1)0%   (0/5)0%   (0/2)
getImage (Object): Object 0%   (0/1)0%   (0/8)0%   (0/1)
getPropertyDescriptors (Object): List 0%   (0/1)0%   (0/16)0%   (0/5)
getResourceLocator (): ResourceLocator 0%   (0/1)0%   (0/2)0%   (0/1)
getText (Object): String 0%   (0/1)0%   (0/4)0%   (0/1)
notifyChanged (Notification): void 0%   (0/1)0%   (0/7)0%   (0/3)

1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package de.fzi.se.quality.parameters.pcm.provider;
8 
9 
10import de.fzi.se.quality.parameters.pcm.PCMPackage;
11 
12import de.fzi.se.quality.parameters.provider.InfrastructureOperationReferenceItemProvider;
13 
14import de.fzi.se.quality.provider.QualityEditPlugin;
15 
16import java.util.Collection;
17import java.util.List;
18 
19import org.eclipse.emf.common.notify.AdapterFactory;
20import org.eclipse.emf.common.notify.Notification;
21 
22import org.eclipse.emf.common.util.ResourceLocator;
23 
24import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
25import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
26import org.eclipse.emf.edit.provider.IItemLabelProvider;
27import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
28import org.eclipse.emf.edit.provider.IItemPropertySource;
29import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
30import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
31 
32/**
33 * This is the item provider adapter for a {@link de.fzi.se.quality.parameters.pcm.PCMInfrastructureOperationReference} object.
34 * <!-- begin-user-doc -->
35 * <!-- end-user-doc -->
36 * @generated
37 */
38public class PCMInfrastructureOperationReferenceItemProvider
39        extends InfrastructureOperationReferenceItemProvider
40        implements
41                IEditingDomainItemProvider,
42                IStructuredItemContentProvider,
43                ITreeItemContentProvider,
44                IItemLabelProvider,
45                IItemPropertySource {
46        /**
47         * This constructs an instance from a factory and a notifier.
48         * <!-- begin-user-doc -->
49         * <!-- end-user-doc -->
50         * @generated
51         */
52        public PCMInfrastructureOperationReferenceItemProvider(AdapterFactory adapterFactory) {
53                super(adapterFactory);
54        }
55 
56        /**
57         * This returns the property descriptors for the adapted class.
58         * <!-- begin-user-doc -->
59         * <!-- end-user-doc -->
60         * @generated
61         */
62        @Override
63        public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) {
64                if (itemPropertyDescriptors == null) {
65                        super.getPropertyDescriptors(object);
66 
67                        addResourceRequiredRolePropertyDescriptor(object);
68                        addSignaturePropertyDescriptor(object);
69                }
70                return itemPropertyDescriptors;
71        }
72 
73        /**
74         * This adds a property descriptor for the Resource Required Role feature.
75         * <!-- begin-user-doc -->
76         * <!-- end-user-doc -->
77         * @generated
78         */
79        protected void addResourceRequiredRolePropertyDescriptor(Object object) {
80                itemPropertyDescriptors.add
81                        (createItemPropertyDescriptor
82                                (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
83                                 getResourceLocator(),
84                                 getString("_UI_PCMInfrastructureOperationReference_resourceRequiredRole_feature"),
85                                 getString("_UI_PropertyDescriptor_description", "_UI_PCMInfrastructureOperationReference_resourceRequiredRole_feature", "_UI_PCMInfrastructureOperationReference_type"),
86                                 PCMPackage.Literals.PCM_INFRASTRUCTURE_OPERATION_REFERENCE__RESOURCE_REQUIRED_ROLE,
87                                 true,
88                                 false,
89                                 true,
90                                 null,
91                                 null,
92                                 null));
93        }
94 
95        /**
96         * This adds a property descriptor for the Signature feature.
97         * <!-- begin-user-doc -->
98         * <!-- end-user-doc -->
99         * @generated
100         */
101        protected void addSignaturePropertyDescriptor(Object object) {
102                itemPropertyDescriptors.add
103                        (createItemPropertyDescriptor
104                                (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
105                                 getResourceLocator(),
106                                 getString("_UI_PCMInfrastructureOperationReference_signature_feature"),
107                                 getString("_UI_PropertyDescriptor_description", "_UI_PCMInfrastructureOperationReference_signature_feature", "_UI_PCMInfrastructureOperationReference_type"),
108                                 PCMPackage.Literals.PCM_INFRASTRUCTURE_OPERATION_REFERENCE__SIGNATURE,
109                                 true,
110                                 false,
111                                 true,
112                                 null,
113                                 null,
114                                 null));
115        }
116 
117        /**
118         * This returns PCMInfrastructureOperationReference.gif.
119         * <!-- begin-user-doc -->
120         * <!-- end-user-doc -->
121         * @generated
122         */
123        @Override
124        public Object getImage(Object object) {
125                return overlayImage(object, getResourceLocator().getImage("full/obj16/PCMInfrastructureOperationReference"));
126        }
127 
128        /**
129         * This returns the label text for the adapted class.
130         * <!-- begin-user-doc -->
131         * <!-- end-user-doc -->
132         * @generated
133         */
134        @Override
135        public String getText(Object object) {
136                return getString("_UI_PCMInfrastructureOperationReference_type");
137        }
138 
139        /**
140         * This handles model notifications by calling {@link #updateChildren} to update any cached
141         * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
142         * <!-- begin-user-doc -->
143         * <!-- end-user-doc -->
144         * @generated
145         */
146        @Override
147        public void notifyChanged(Notification notification) {
148                updateChildren(notification);
149                super.notifyChanged(notification);
150        }
151 
152        /**
153         * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
154         * that can be created under this object.
155         * <!-- begin-user-doc -->
156         * <!-- end-user-doc -->
157         * @generated
158         */
159        @Override
160        protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
161                super.collectNewChildDescriptors(newChildDescriptors, object);
162        }
163 
164        /**
165         * Return the resource locator for this item provider's resources.
166         * <!-- begin-user-doc -->
167         * <!-- end-user-doc -->
168         * @generated
169         */
170        @Override
171        public ResourceLocator getResourceLocator() {
172                return QualityEditPlugin.INSTANCE;
173        }
174 
175}

[all classes][de.fzi.se.quality.parameters.pcm.provider]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov