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

COVERAGE SUMMARY FOR SOURCE FILE [InstanceSelectionRuleImpl.java]

nameclass, %method, %block, %line, %
InstanceSelectionRuleImpl.java0%   (0/1)0%   (0/9)0%   (0/118)0%   (0/33)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class InstanceSelectionRuleImpl0%   (0/1)0%   (0/9)0%   (0/118)0%   (0/33)
InstanceSelectionRuleImpl (): void 0%   (0/1)0%   (0/3)0%   (0/2)
basicGetContextInstance (): ChangeableElementDescription 0%   (0/1)0%   (0/3)0%   (0/1)
eGet (int, boolean, boolean): Object 0%   (0/1)0%   (0/16)0%   (0/4)
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)
getContextInstance (): ChangeableElementDescription 0%   (0/1)0%   (0/38)0%   (0/7)
setContextInstance (ChangeableElementDescription): void 0%   (0/1)0%   (0/21)0%   (0/5)

1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package de.uka.ipd.sdq.pcm.designdecision.GDoF.impl;
8 
9import de.uka.ipd.sdq.pcm.designdecision.GDoF.ChangeableElementDescription;
10import de.uka.ipd.sdq.pcm.designdecision.GDoF.GDoFPackage;
11import de.uka.ipd.sdq.pcm.designdecision.GDoF.InstanceSelectionRule;
12 
13import org.eclipse.emf.common.notify.Notification;
14 
15import org.eclipse.emf.ecore.EClass;
16import org.eclipse.emf.ecore.InternalEObject;
17 
18import org.eclipse.emf.ecore.impl.ENotificationImpl;
19 
20/**
21 * <!-- begin-user-doc -->
22 * An implementation of the model object '<em><b>Instance Selection Rule</b></em>'.
23 * <!-- end-user-doc -->
24 * <p>
25 * The following features are implemented:
26 * <ul>
27 *   <li>{@link de.uka.ipd.sdq.pcm.designdecision.GDoF.impl.InstanceSelectionRuleImpl#getContextInstance <em>Context Instance</em>}</li>
28 * </ul>
29 * </p>
30 *
31 * @generated
32 */
33public class InstanceSelectionRuleImpl extends SelectionRuleImpl implements InstanceSelectionRule {
34        /**
35         * The cached value of the '{@link #getContextInstance() <em>Context Instance</em>}' reference.
36         * <!-- begin-user-doc -->
37         * <!-- end-user-doc -->
38         * @see #getContextInstance()
39         * @generated
40         * @ordered
41         */
42        protected ChangeableElementDescription contextInstance;
43 
44        /**
45         * <!-- begin-user-doc -->
46         * <!-- end-user-doc -->
47         * @generated
48         */
49        protected InstanceSelectionRuleImpl() {
50                super();
51        }
52 
53        /**
54         * <!-- begin-user-doc -->
55         * <!-- end-user-doc -->
56         * @generated
57         */
58        @Override
59        protected EClass eStaticClass() {
60                return GDoFPackage.Literals.INSTANCE_SELECTION_RULE;
61        }
62 
63        /**
64         * <!-- begin-user-doc -->
65         * <!-- end-user-doc -->
66         * @generated
67         */
68        public ChangeableElementDescription getContextInstance() {
69                if (contextInstance != null && contextInstance.eIsProxy()) {
70                        InternalEObject oldContextInstance = (InternalEObject)contextInstance;
71                        contextInstance = (ChangeableElementDescription)eResolveProxy(oldContextInstance);
72                        if (contextInstance != oldContextInstance) {
73                                if (eNotificationRequired())
74                                        eNotify(new ENotificationImpl(this, Notification.RESOLVE, GDoFPackage.INSTANCE_SELECTION_RULE__CONTEXT_INSTANCE, oldContextInstance, contextInstance));
75                        }
76                }
77                return contextInstance;
78        }
79 
80        /**
81         * <!-- begin-user-doc -->
82         * <!-- end-user-doc -->
83         * @generated
84         */
85        public ChangeableElementDescription basicGetContextInstance() {
86                return contextInstance;
87        }
88 
89        /**
90         * <!-- begin-user-doc -->
91         * <!-- end-user-doc -->
92         * @generated
93         */
94        public void setContextInstance(ChangeableElementDescription newContextInstance) {
95                ChangeableElementDescription oldContextInstance = contextInstance;
96                contextInstance = newContextInstance;
97                if (eNotificationRequired())
98                        eNotify(new ENotificationImpl(this, Notification.SET, GDoFPackage.INSTANCE_SELECTION_RULE__CONTEXT_INSTANCE, oldContextInstance, contextInstance));
99        }
100 
101        /**
102         * <!-- begin-user-doc -->
103         * <!-- end-user-doc -->
104         * @generated
105         */
106        @Override
107        public Object eGet(int featureID, boolean resolve, boolean coreType) {
108                switch (featureID) {
109                        case GDoFPackage.INSTANCE_SELECTION_RULE__CONTEXT_INSTANCE:
110                                if (resolve) return getContextInstance();
111                                return basicGetContextInstance();
112                }
113                return super.eGet(featureID, resolve, coreType);
114        }
115 
116        /**
117         * <!-- begin-user-doc -->
118         * <!-- end-user-doc -->
119         * @generated
120         */
121        @Override
122        public void eSet(int featureID, Object newValue) {
123                switch (featureID) {
124                        case GDoFPackage.INSTANCE_SELECTION_RULE__CONTEXT_INSTANCE:
125                                setContextInstance((ChangeableElementDescription)newValue);
126                                return;
127                }
128                super.eSet(featureID, newValue);
129        }
130 
131        /**
132         * <!-- begin-user-doc -->
133         * <!-- end-user-doc -->
134         * @generated
135         */
136        @Override
137        public void eUnset(int featureID) {
138                switch (featureID) {
139                        case GDoFPackage.INSTANCE_SELECTION_RULE__CONTEXT_INSTANCE:
140                                setContextInstance((ChangeableElementDescription)null);
141                                return;
142                }
143                super.eUnset(featureID);
144        }
145 
146        /**
147         * <!-- begin-user-doc -->
148         * <!-- end-user-doc -->
149         * @generated
150         */
151        @Override
152        public boolean eIsSet(int featureID) {
153                switch (featureID) {
154                        case GDoFPackage.INSTANCE_SELECTION_RULE__CONTEXT_INSTANCE:
155                                return contextInstance != null;
156                }
157                return super.eIsSet(featureID);
158        }
159 
160} //InstanceSelectionRuleImpl

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