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

COVERAGE SUMMARY FOR SOURCE FILE [LinkingResourceCostImpl.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

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

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