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

COVERAGE SUMMARY FOR SOURCE FILE [IntegerQualityPropertyItemProvider.java]

nameclass, %method, %block, %line, %
IntegerQualityPropertyItemProvider.java0%   (0/1)0%   (0/7)0%   (0/113)0%   (0/34)

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

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