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

COVERAGE SUMMARY FOR SOURCE FILE [SpaFactoryImpl.java]

nameclass, %method, %block, %line, %
SpaFactoryImpl.java0%   (0/1)0%   (0/7)0%   (0/61)0%   (0/18)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class SpaFactoryImpl0%   (0/1)0%   (0/7)0%   (0/61)0%   (0/18)
SpaFactoryImpl (): void 0%   (0/1)0%   (0/3)0%   (0/2)
create (EClass): EObject 0%   (0/1)0%   (0/23)0%   (0/4)
createProcessBehaviour (): ProcessBehaviour 0%   (0/1)0%   (0/6)0%   (0/2)
createSPAModel (): SPAModel 0%   (0/1)0%   (0/6)0%   (0/2)
getPackage (): SpaPackage 0%   (0/1)0%   (0/2)0%   (0/1)
getSpaPackage (): SpaPackage 0%   (0/1)0%   (0/4)0%   (0/1)
init (): SpaFactory 0%   (0/1)0%   (0/17)0%   (0/6)

1/**
2 * <copyright>
3 * </copyright>
4 *
5 * $Id$
6 */
7package de.uka.ipd.sdq.spa.impl;
8 
9import de.uka.ipd.sdq.spa.*;
10 
11import org.eclipse.emf.ecore.EClass;
12import org.eclipse.emf.ecore.EObject;
13import org.eclipse.emf.ecore.EPackage;
14 
15import org.eclipse.emf.ecore.impl.EFactoryImpl;
16 
17import org.eclipse.emf.ecore.plugin.EcorePlugin;
18 
19/**
20 * <!-- begin-user-doc -->
21 * An implementation of the model <b>Factory</b>.
22 * <!-- end-user-doc -->
23 * @generated
24 */
25public class SpaFactoryImpl extends EFactoryImpl implements SpaFactory {
26        /**
27         * Creates the default factory implementation.
28         * <!-- begin-user-doc -->
29         * <!-- end-user-doc -->
30         * @generated
31         */
32        public static SpaFactory init() {
33                try {
34                        SpaFactory theSpaFactory = (SpaFactory)EPackage.Registry.INSTANCE.getEFactory("http://sdq.ipd.uka.de/StochasticProcessAlgebra/1.0"); 
35                        if (theSpaFactory != null) {
36                                return theSpaFactory;
37                        }
38                }
39                catch (Exception exception) {
40                        EcorePlugin.INSTANCE.log(exception);
41                }
42                return new SpaFactoryImpl();
43        }
44 
45        /**
46         * Creates an instance of the factory.
47         * <!-- begin-user-doc -->
48         * <!-- end-user-doc -->
49         * @generated
50         */
51        public SpaFactoryImpl() {
52                super();
53        }
54 
55        /**
56         * <!-- begin-user-doc -->
57         * <!-- end-user-doc -->
58         * @generated
59         */
60        @Override
61        public EObject create(EClass eClass) {
62                switch (eClass.getClassifierID()) {
63                        case SpaPackage.PROCESS_BEHAVIOUR: return createProcessBehaviour();
64                        case SpaPackage.SPA_MODEL: return createSPAModel();
65                        default:
66                                throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier");
67                }
68        }
69 
70        /**
71         * <!-- begin-user-doc -->
72         * <!-- end-user-doc -->
73         * @generated
74         */
75        public ProcessBehaviour createProcessBehaviour() {
76                ProcessBehaviourImpl processBehaviour = new ProcessBehaviourImpl();
77                return processBehaviour;
78        }
79 
80        /**
81         * <!-- begin-user-doc -->
82         * <!-- end-user-doc -->
83         * @generated
84         */
85        public SPAModel createSPAModel() {
86                SPAModelImpl spaModel = new SPAModelImpl();
87                return spaModel;
88        }
89 
90        /**
91         * <!-- begin-user-doc -->
92         * <!-- end-user-doc -->
93         * @generated
94         */
95        public SpaPackage getSpaPackage() {
96                return (SpaPackage)getEPackage();
97        }
98 
99        /**
100         * <!-- begin-user-doc -->
101         * <!-- end-user-doc -->
102         * @deprecated
103         * @generated
104         */
105        @Deprecated
106        public static SpaPackage getPackage() {
107                return SpaPackage.eINSTANCE;
108        }
109 
110} //SpaFactoryImpl

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