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

COVERAGE SUMMARY FOR SOURCE FILE [SourceRoleImpl.java]

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

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SourceRoleImpl0%   (0/1)0%   (0/9)0%   (0/118)0%   (0/33)
SourceRoleImpl (): void 0%   (0/1)0%   (0/3)0%   (0/2)
basicGetEventGroup__SourceRole (): EventGroup 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)
getEventGroup__SourceRole (): EventGroup 0%   (0/1)0%   (0/38)0%   (0/7)
setEventGroup__SourceRole (EventGroup): void 0%   (0/1)0%   (0/21)0%   (0/5)

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

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