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

COVERAGE SUMMARY FOR SOURCE FILE [ParameterPartitionImpl.java]

nameclass, %method, %block, %line, %
ParameterPartitionImpl.java0%   (0/1)0%   (0/12)0%   (0/188)0%   (0/47)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class ParameterPartitionImpl0%   (0/1)0%   (0/12)0%   (0/188)0%   (0/47)
ParameterPartitionImpl (): void 0%   (0/1)0%   (0/3)0%   (0/2)
basicSetValidatedSetting (QualityAnnotation, NotificationChain): Notification... 0%   (0/1)0%   (0/9)0%   (0/2)
eBasicRemoveFromContainerFeature (NotificationChain): NotificationChain 0%   (0/1)0%   (0/15)0%   (0/3)
eGet (int, boolean, boolean): Object 0%   (0/1)0%   (0/11)0%   (0/3)
eInverseAdd (InternalEObject, int, NotificationChain): NotificationChain 0%   (0/1)0%   (0/21)0%   (0/5)
eInverseRemove (InternalEObject, int, NotificationChain): NotificationChain 0%   (0/1)0%   (0/13)0%   (0/3)
eIsSet (int): boolean 0%   (0/1)0%   (0/13)0%   (0/3)
eSet (int, Object): void 0%   (0/1)0%   (0/12)0%   (0/5)
eStaticClass (): EClass 0%   (0/1)0%   (0/2)0%   (0/1)
eUnset (int): void 0%   (0/1)0%   (0/10)0%   (0/5)
getValidatedSetting (): QualityAnnotation 0%   (0/1)0%   (0/10)0%   (0/2)
setValidatedSetting (QualityAnnotation): void 0%   (0/1)0%   (0/69)0%   (0/13)

1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package de.fzi.se.quality.parameters.impl;
8 
9import de.fzi.se.quality.parameters.ParameterPartition;
10import de.fzi.se.quality.parameters.ParametersPackage;
11 
12import de.fzi.se.quality.qualityannotation.QualityAnnotation;
13import de.fzi.se.quality.qualityannotation.QualityAnnotationPackage;
14 
15import de.uka.ipd.sdq.identifier.impl.IdentifierImpl;
16 
17import org.eclipse.emf.common.notify.Notification;
18import org.eclipse.emf.common.notify.NotificationChain;
19 
20import org.eclipse.emf.ecore.EClass;
21import org.eclipse.emf.ecore.InternalEObject;
22 
23import org.eclipse.emf.ecore.impl.ENotificationImpl;
24 
25import org.eclipse.emf.ecore.util.EcoreUtil;
26 
27/**
28 * <!-- begin-user-doc -->
29 * An implementation of the model object '<em><b>Parameter Partition</b></em>'.
30 * <!-- end-user-doc -->
31 * <p>
32 * The following features are implemented:
33 * <ul>
34 *   <li>{@link de.fzi.se.quality.parameters.impl.ParameterPartitionImpl#getValidatedSetting <em>Validated Setting</em>}</li>
35 * </ul>
36 * </p>
37 *
38 * @generated
39 */
40public abstract class ParameterPartitionImpl extends IdentifierImpl implements ParameterPartition {
41        /**
42         * <!-- begin-user-doc -->
43         * <!-- end-user-doc -->
44         * @generated
45         */
46        protected ParameterPartitionImpl() {
47                super();
48        }
49 
50        /**
51         * <!-- begin-user-doc -->
52         * <!-- end-user-doc -->
53         * @generated
54         */
55        @Override
56        protected EClass eStaticClass() {
57                return ParametersPackage.Literals.PARAMETER_PARTITION;
58        }
59 
60        /**
61         * <!-- begin-user-doc -->
62         * <!-- end-user-doc -->
63         * @generated
64         */
65        public QualityAnnotation getValidatedSetting() {
66                if (eContainerFeatureID() != ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING) return null;
67                return (QualityAnnotation)eContainer();
68        }
69 
70        /**
71         * <!-- begin-user-doc -->
72         * <!-- end-user-doc -->
73         * @generated
74         */
75        public NotificationChain basicSetValidatedSetting(QualityAnnotation newValidatedSetting, NotificationChain msgs) {
76                msgs = eBasicSetContainer((InternalEObject)newValidatedSetting, ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING, msgs);
77                return msgs;
78        }
79 
80        /**
81         * <!-- begin-user-doc -->
82         * <!-- end-user-doc -->
83         * @generated
84         */
85        public void setValidatedSetting(QualityAnnotation newValidatedSetting) {
86                if (newValidatedSetting != eInternalContainer() || (eContainerFeatureID() != ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING && newValidatedSetting != null)) {
87                        if (EcoreUtil.isAncestor(this, newValidatedSetting))
88                                throw new IllegalArgumentException("Recursive containment not allowed for " + toString());
89                        NotificationChain msgs = null;
90                        if (eInternalContainer() != null)
91                                msgs = eBasicRemoveFromContainer(msgs);
92                        if (newValidatedSetting != null)
93                                msgs = ((InternalEObject)newValidatedSetting).eInverseAdd(this, QualityAnnotationPackage.QUALITY_ANNOTATION__VALID_FOR_PARAMETER_PARTITIONS, QualityAnnotation.class, msgs);
94                        msgs = basicSetValidatedSetting(newValidatedSetting, msgs);
95                        if (msgs != null) msgs.dispatch();
96                }
97                else if (eNotificationRequired())
98                        eNotify(new ENotificationImpl(this, Notification.SET, ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING, newValidatedSetting, newValidatedSetting));
99        }
100 
101        /**
102         * <!-- begin-user-doc -->
103         * <!-- end-user-doc -->
104         * @generated
105         */
106        @Override
107        public NotificationChain eInverseAdd(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
108                switch (featureID) {
109                        case ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING:
110                                if (eInternalContainer() != null)
111                                        msgs = eBasicRemoveFromContainer(msgs);
112                                return basicSetValidatedSetting((QualityAnnotation)otherEnd, msgs);
113                }
114                return super.eInverseAdd(otherEnd, featureID, msgs);
115        }
116 
117        /**
118         * <!-- begin-user-doc -->
119         * <!-- end-user-doc -->
120         * @generated
121         */
122        @Override
123        public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
124                switch (featureID) {
125                        case ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING:
126                                return basicSetValidatedSetting(null, msgs);
127                }
128                return super.eInverseRemove(otherEnd, featureID, msgs);
129        }
130 
131        /**
132         * <!-- begin-user-doc -->
133         * <!-- end-user-doc -->
134         * @generated
135         */
136        @Override
137        public NotificationChain eBasicRemoveFromContainerFeature(NotificationChain msgs) {
138                switch (eContainerFeatureID()) {
139                        case ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING:
140                                return eInternalContainer().eInverseRemove(this, QualityAnnotationPackage.QUALITY_ANNOTATION__VALID_FOR_PARAMETER_PARTITIONS, QualityAnnotation.class, msgs);
141                }
142                return super.eBasicRemoveFromContainerFeature(msgs);
143        }
144 
145        /**
146         * <!-- begin-user-doc -->
147         * <!-- end-user-doc -->
148         * @generated
149         */
150        @Override
151        public Object eGet(int featureID, boolean resolve, boolean coreType) {
152                switch (featureID) {
153                        case ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING:
154                                return getValidatedSetting();
155                }
156                return super.eGet(featureID, resolve, coreType);
157        }
158 
159        /**
160         * <!-- begin-user-doc -->
161         * <!-- end-user-doc -->
162         * @generated
163         */
164        @Override
165        public void eSet(int featureID, Object newValue) {
166                switch (featureID) {
167                        case ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING:
168                                setValidatedSetting((QualityAnnotation)newValue);
169                                return;
170                }
171                super.eSet(featureID, newValue);
172        }
173 
174        /**
175         * <!-- begin-user-doc -->
176         * <!-- end-user-doc -->
177         * @generated
178         */
179        @Override
180        public void eUnset(int featureID) {
181                switch (featureID) {
182                        case ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING:
183                                setValidatedSetting((QualityAnnotation)null);
184                                return;
185                }
186                super.eUnset(featureID);
187        }
188 
189        /**
190         * <!-- begin-user-doc -->
191         * <!-- end-user-doc -->
192         * @generated
193         */
194        @Override
195        public boolean eIsSet(int featureID) {
196                switch (featureID) {
197                        case ParametersPackage.PARAMETER_PARTITION__VALIDATED_SETTING:
198                                return getValidatedSetting() != null;
199                }
200                return super.eIsSet(featureID);
201        }
202 
203} //ParameterPartitionImpl

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