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 [VariableCostImpl.java]

nameclass, %method, %block, %line, %
VariableCostImpl.java0%   (0/1)0%   (0/11)0%   (0/169)0%   (0/47)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class VariableCostImpl0%   (0/1)0%   (0/11)0%   (0/169)0%   (0/47)
VariableCostImpl (): void 0%   (0/1)0%   (0/9)0%   (0/4)
eGet (int, boolean, boolean): Object 0%   (0/1)0%   (0/16)0%   (0/4)
eIsSet (int): boolean 0%   (0/1)0%   (0/24)0%   (0/4)
eSet (int, Object): void 0%   (0/1)0%   (0/19)0%   (0/7)
eStaticClass (): EClass 0%   (0/1)0%   (0/2)0%   (0/1)
eUnset (int): void 0%   (0/1)0%   (0/14)0%   (0/7)
getFixedInitialCost (): double 0%   (0/1)0%   (0/3)0%   (0/1)
getFixedOperatingCost (): double 0%   (0/1)0%   (0/3)0%   (0/1)
setFixedInitialCost (double): void 0%   (0/1)0%   (0/21)0%   (0/5)
setFixedOperatingCost (double): void 0%   (0/1)0%   (0/21)0%   (0/5)
toString (): String 0%   (0/1)0%   (0/37)0%   (0/8)

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.VariableCost;
10import de.uka.ipd.sdq.pcm.cost.costPackage;
11 
12import org.eclipse.emf.common.notify.Notification;
13 
14import org.eclipse.emf.ecore.EClass;
15 
16import org.eclipse.emf.ecore.impl.ENotificationImpl;
17 
18/**
19 * <!-- begin-user-doc -->
20 * An implementation of the model object '<em><b>Variable Cost</b></em>'.
21 * <!-- end-user-doc -->
22 * <p>
23 * The following features are implemented:
24 * <ul>
25 *   <li>{@link de.uka.ipd.sdq.pcm.cost.impl.VariableCostImpl#getFixedInitialCost <em>Fixed Initial Cost</em>}</li>
26 *   <li>{@link de.uka.ipd.sdq.pcm.cost.impl.VariableCostImpl#getFixedOperatingCost <em>Fixed Operating Cost</em>}</li>
27 * </ul>
28 * </p>
29 *
30 * @generated
31 */
32public abstract class VariableCostImpl extends CostImpl implements VariableCost {
33        /**
34         * The default value of the '{@link #getFixedInitialCost() <em>Fixed Initial Cost</em>}' attribute.
35         * <!-- begin-user-doc -->
36         * <!-- end-user-doc -->
37         * @see #getFixedInitialCost()
38         * @generated
39         * @ordered
40         */
41        protected static final double FIXED_INITIAL_COST_EDEFAULT = 0.0;
42 
43        /**
44         * The cached value of the '{@link #getFixedInitialCost() <em>Fixed Initial Cost</em>}' attribute.
45         * <!-- begin-user-doc -->
46         * <!-- end-user-doc -->
47         * @see #getFixedInitialCost()
48         * @generated
49         * @ordered
50         */
51        protected double fixedInitialCost = FIXED_INITIAL_COST_EDEFAULT;
52 
53        /**
54         * The default value of the '{@link #getFixedOperatingCost() <em>Fixed Operating Cost</em>}' attribute.
55         * <!-- begin-user-doc -->
56         * <!-- end-user-doc -->
57         * @see #getFixedOperatingCost()
58         * @generated
59         * @ordered
60         */
61        protected static final double FIXED_OPERATING_COST_EDEFAULT = 0.0;
62 
63        /**
64         * The cached value of the '{@link #getFixedOperatingCost() <em>Fixed Operating Cost</em>}' attribute.
65         * <!-- begin-user-doc -->
66         * <!-- end-user-doc -->
67         * @see #getFixedOperatingCost()
68         * @generated
69         * @ordered
70         */
71        protected double fixedOperatingCost = FIXED_OPERATING_COST_EDEFAULT;
72 
73        /**
74         * <!-- begin-user-doc -->
75         * <!-- end-user-doc -->
76         * @generated
77         */
78        protected VariableCostImpl() {
79                super();
80        }
81 
82        /**
83         * <!-- begin-user-doc -->
84         * <!-- end-user-doc -->
85         * @generated
86         */
87        @Override
88        protected EClass eStaticClass() {
89                return costPackage.Literals.VARIABLE_COST;
90        }
91 
92        /**
93         * <!-- begin-user-doc -->
94         * <!-- end-user-doc -->
95         * @generated
96         */
97        public double getFixedInitialCost() {
98                return fixedInitialCost;
99        }
100 
101        /**
102         * <!-- begin-user-doc -->
103         * <!-- end-user-doc -->
104         * @generated
105         */
106        public void setFixedInitialCost(double newFixedInitialCost) {
107                double oldFixedInitialCost = fixedInitialCost;
108                fixedInitialCost = newFixedInitialCost;
109                if (eNotificationRequired())
110                        eNotify(new ENotificationImpl(this, Notification.SET, costPackage.VARIABLE_COST__FIXED_INITIAL_COST, oldFixedInitialCost, fixedInitialCost));
111        }
112 
113        /**
114         * <!-- begin-user-doc -->
115         * <!-- end-user-doc -->
116         * @generated
117         */
118        public double getFixedOperatingCost() {
119                return fixedOperatingCost;
120        }
121 
122        /**
123         * <!-- begin-user-doc -->
124         * <!-- end-user-doc -->
125         * @generated
126         */
127        public void setFixedOperatingCost(double newFixedOperatingCost) {
128                double oldFixedOperatingCost = fixedOperatingCost;
129                fixedOperatingCost = newFixedOperatingCost;
130                if (eNotificationRequired())
131                        eNotify(new ENotificationImpl(this, Notification.SET, costPackage.VARIABLE_COST__FIXED_OPERATING_COST, oldFixedOperatingCost, fixedOperatingCost));
132        }
133 
134        /**
135         * <!-- begin-user-doc -->
136         * <!-- end-user-doc -->
137         * @generated
138         */
139        @Override
140        public Object eGet(int featureID, boolean resolve, boolean coreType) {
141                switch (featureID) {
142                        case costPackage.VARIABLE_COST__FIXED_INITIAL_COST:
143                                return getFixedInitialCost();
144                        case costPackage.VARIABLE_COST__FIXED_OPERATING_COST:
145                                return getFixedOperatingCost();
146                }
147                return super.eGet(featureID, resolve, coreType);
148        }
149 
150        /**
151         * <!-- begin-user-doc -->
152         * <!-- end-user-doc -->
153         * @generated
154         */
155        @Override
156        public void eSet(int featureID, Object newValue) {
157                switch (featureID) {
158                        case costPackage.VARIABLE_COST__FIXED_INITIAL_COST:
159                                setFixedInitialCost((Double)newValue);
160                                return;
161                        case costPackage.VARIABLE_COST__FIXED_OPERATING_COST:
162                                setFixedOperatingCost((Double)newValue);
163                                return;
164                }
165                super.eSet(featureID, newValue);
166        }
167 
168        /**
169         * <!-- begin-user-doc -->
170         * <!-- end-user-doc -->
171         * @generated
172         */
173        @Override
174        public void eUnset(int featureID) {
175                switch (featureID) {
176                        case costPackage.VARIABLE_COST__FIXED_INITIAL_COST:
177                                setFixedInitialCost(FIXED_INITIAL_COST_EDEFAULT);
178                                return;
179                        case costPackage.VARIABLE_COST__FIXED_OPERATING_COST:
180                                setFixedOperatingCost(FIXED_OPERATING_COST_EDEFAULT);
181                                return;
182                }
183                super.eUnset(featureID);
184        }
185 
186        /**
187         * <!-- begin-user-doc -->
188         * <!-- end-user-doc -->
189         * @generated
190         */
191        @Override
192        public boolean eIsSet(int featureID) {
193                switch (featureID) {
194                        case costPackage.VARIABLE_COST__FIXED_INITIAL_COST:
195                                return fixedInitialCost != FIXED_INITIAL_COST_EDEFAULT;
196                        case costPackage.VARIABLE_COST__FIXED_OPERATING_COST:
197                                return fixedOperatingCost != FIXED_OPERATING_COST_EDEFAULT;
198                }
199                return super.eIsSet(featureID);
200        }
201 
202        /**
203         * <!-- begin-user-doc -->
204         * <!-- end-user-doc -->
205         * @generated
206         */
207        @Override
208        public String toString() {
209                if (eIsProxy()) return super.toString();
210 
211                StringBuffer result = new StringBuffer(super.toString());
212                result.append(" (fixedInitialCost: ");
213                result.append(fixedInitialCost);
214                result.append(", fixedOperatingCost: ");
215                result.append(fixedOperatingCost);
216                result.append(')');
217                return result.toString();
218        }
219 
220} //VariableCostImpl

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