EMMA Coverage Report (generated Sun Feb 05 10:43:15 CET 2012)
[all classes][de.uka.ipd.sdq.probfunction.provider]

COVERAGE SUMMARY FOR SOURCE FILE [SamplePDFItemProvider.java]

nameclass, %method, %block, %line, %
SamplePDFItemProvider.java0%   (0/1)0%   (0/8)0%   (0/137)0%   (0/48)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SamplePDFItemProvider0%   (0/1)0%   (0/8)0%   (0/137)0%   (0/48)
SamplePDFItemProvider (AdapterFactory): void 0%   (0/1)0%   (0/4)0%   (0/2)
addDistancePropertyDescriptor (Object): void 0%   (0/1)0%   (0/28)0%   (0/14)
addValuesPropertyDescriptor (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)
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 de.uka.ipd.sdq.probfunction.provider;
8 
9 
10import java.util.Collection;
11import java.util.List;
12 
13import org.eclipse.emf.common.notify.AdapterFactory;
14import org.eclipse.emf.common.notify.Notification;
15import org.eclipse.emf.edit.provider.ComposeableAdapterFactory;
16import org.eclipse.emf.edit.provider.IEditingDomainItemProvider;
17import org.eclipse.emf.edit.provider.IItemLabelProvider;
18import org.eclipse.emf.edit.provider.IItemPropertyDescriptor;
19import org.eclipse.emf.edit.provider.IItemPropertySource;
20import org.eclipse.emf.edit.provider.IStructuredItemContentProvider;
21import org.eclipse.emf.edit.provider.ITreeItemContentProvider;
22import org.eclipse.emf.edit.provider.ItemPropertyDescriptor;
23import org.eclipse.emf.edit.provider.ViewerNotification;
24 
25import de.uka.ipd.sdq.probfunction.ProbfunctionPackage;
26import de.uka.ipd.sdq.probfunction.SamplePDF;
27 
28/**
29 * This is the item provider adapter for a {@link de.uka.ipd.sdq.probfunction.SamplePDF} object.
30 * <!-- begin-user-doc -->
31 * <!-- end-user-doc -->
32 * @generated
33 */
34public class SamplePDFItemProvider
35        extends ProbabilityDensityFunctionItemProvider
36        implements        
37                IEditingDomainItemProvider,        
38                IStructuredItemContentProvider,        
39                ITreeItemContentProvider,        
40                IItemLabelProvider,        
41                IItemPropertySource {
42        /**
43         * <!-- begin-user-doc -->
44         * <!-- end-user-doc -->
45         * @generated
46         */
47        public static final String copyright = "Copyright 2007-2009, SDQ, IPD, U Karlsruhe";
48 
49        /**
50         * This constructs an instance from a factory and a notifier.
51         * <!-- begin-user-doc -->
52         * <!-- end-user-doc -->
53         * @generated
54         */
55        public SamplePDFItemProvider(AdapterFactory adapterFactory) {
56                super(adapterFactory);
57        }
58 
59        /**
60         * This returns the property descriptors for the adapted class.
61         * <!-- begin-user-doc -->
62         * <!-- end-user-doc -->
63         * @generated
64         */
65        @Override
66        public List<IItemPropertyDescriptor> getPropertyDescriptors(Object object) {
67                if (itemPropertyDescriptors == null) {
68                        super.getPropertyDescriptors(object);
69 
70                        addDistancePropertyDescriptor(object);
71                        addValuesPropertyDescriptor(object);
72                }
73                return itemPropertyDescriptors;
74        }
75 
76        /**
77         * This adds a property descriptor for the Distance feature.
78         * <!-- begin-user-doc -->
79         * <!-- end-user-doc -->
80         * @generated
81         */
82        protected void addDistancePropertyDescriptor(Object object) {
83                itemPropertyDescriptors.add
84                        (createItemPropertyDescriptor
85                                (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
86                                 getResourceLocator(),
87                                 getString("_UI_SamplePDF_distance_feature"),
88                                 getString("_UI_PropertyDescriptor_description", "_UI_SamplePDF_distance_feature", "_UI_SamplePDF_type"),
89                                 ProbfunctionPackage.Literals.SAMPLE_PDF__DISTANCE,
90                                 true,
91                                 false,
92                                 false,
93                                 ItemPropertyDescriptor.REAL_VALUE_IMAGE,
94                                 null,
95                                 null));
96        }
97 
98        /**
99         * This adds a property descriptor for the Values feature.
100         * <!-- begin-user-doc -->
101         * <!-- end-user-doc -->
102         * @generated
103         */
104        protected void addValuesPropertyDescriptor(Object object) {
105                itemPropertyDescriptors.add
106                        (createItemPropertyDescriptor
107                                (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(),
108                                 getResourceLocator(),
109                                 getString("_UI_SamplePDF_values_feature"),
110                                 getString("_UI_PropertyDescriptor_description", "_UI_SamplePDF_values_feature", "_UI_SamplePDF_type"),
111                                 ProbfunctionPackage.Literals.SAMPLE_PDF__VALUES,
112                                 true,
113                                 false,
114                                 false,
115                                 null,
116                                 null,
117                                 null));
118        }
119 
120        /**
121         * This returns SamplePDF.gif.
122         * <!-- begin-user-doc -->
123         * <!-- end-user-doc -->
124         * @generated
125         */
126        @Override
127        public Object getImage(Object object) {
128                return overlayImage(object, getResourceLocator().getImage("full/obj16/SamplePDF"));
129        }
130 
131        /**
132         * This returns the label text for the adapted class.
133         * <!-- begin-user-doc -->
134         * <!-- end-user-doc -->
135         * @generated
136         */
137        @Override
138        public String getText(Object object) {
139                String label = ((SamplePDF)object).getUnitSpecification();
140                return label == null || label.length() == 0 ?
141                        getString("_UI_SamplePDF_type") :
142                        getString("_UI_SamplePDF_type") + " " + label;
143        }
144 
145        /**
146         * This handles model notifications by calling {@link #updateChildren} to update any cached
147         * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
148         * <!-- begin-user-doc -->
149         * <!-- end-user-doc -->
150         * @generated
151         */
152        @Override
153        public void notifyChanged(Notification notification) {
154                updateChildren(notification);
155 
156                switch (notification.getFeatureID(SamplePDF.class)) {
157                        case ProbfunctionPackage.SAMPLE_PDF__DISTANCE:
158                        case ProbfunctionPackage.SAMPLE_PDF__VALUES:
159                                fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true));
160                                return;
161                }
162                super.notifyChanged(notification);
163        }
164 
165        /**
166         * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children
167         * that can be created under this object.
168         * <!-- begin-user-doc -->
169         * <!-- end-user-doc -->
170         * @generated
171         */
172        @Override
173        protected void collectNewChildDescriptors(Collection<Object> newChildDescriptors, Object object) {
174                super.collectNewChildDescriptors(newChildDescriptors, object);
175        }
176 
177}

[all classes][de.uka.ipd.sdq.probfunction.provider]
EMMA 2.0.9414 (unsupported private build) (C) Vladimir Roubtsov