Skip to content

Package: TestFactory

TestFactory

nameinstructionbranchcomplexitylinemethod
static {...}
M: 0 C: 3
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: /**
2: * Copyright (c) 2011-2015 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * Lucas Koehler - initial API and implementation
13: */
14: package org.eclipse.emfforms.core.services.databinding.testmodel.test.model;
15:
16: import org.eclipse.emf.ecore.EFactory;
17:
18: /**
19: * <!-- begin-user-doc -->
20: * The <b>Factory</b> for the model.
21: * It provides a create method for each non-abstract class of the model.
22: * <!-- end-user-doc -->
23: *
24: * @see org.eclipse.emfforms.core.services.databinding.testmodel.test.model.TestPackage
25: * @generated
26: */
27: public interface TestFactory extends EFactory {
28:         /**
29:          * The singleton instance of the factory.
30:          * <!-- begin-user-doc -->
31:          * <!-- end-user-doc -->
32:          *
33:          * @generated
34:          */
35:         TestFactory eINSTANCE = org.eclipse.emfforms.core.services.databinding.testmodel.test.model.impl.TestFactoryImpl
36:                 .init();
37:
38:         /**
39:          * Returns a new object of class '<em>A</em>'.
40:          * <!-- begin-user-doc -->
41:          * <!-- end-user-doc -->
42:          *
43:          * @return a new object of class '<em>A</em>'.
44:          * @generated
45:          */
46:         A createA();
47:
48:         /**
49:          * Returns a new object of class '<em>B</em>'.
50:          * <!-- begin-user-doc -->
51:          * <!-- end-user-doc -->
52:          *
53:          * @return a new object of class '<em>B</em>'.
54:          * @generated
55:          */
56:         B createB();
57:
58:         /**
59:          * Returns a new object of class '<em>C</em>'.
60:          * <!-- begin-user-doc -->
61:          * <!-- end-user-doc -->
62:          *
63:          * @return a new object of class '<em>C</em>'.
64:          * @generated
65:          */
66:         C createC();
67:
68:         /**
69:          * Returns a new object of class '<em>D</em>'.
70:          * <!-- begin-user-doc -->
71:          * <!-- end-user-doc -->
72:          *
73:          * @return a new object of class '<em>D</em>'.
74:          * @generated
75:          */
76:         D createD();
77:
78:         /**
79:          * Returns a new object of class '<em>DExtended</em>'.
80:          * <!-- begin-user-doc -->
81:          * <!-- end-user-doc -->
82:          *
83:          * @return a new object of class '<em>DExtended</em>'.
84:          * @generated
85:          */
86:         DExtended createDExtended();
87:
88:         /**
89:          * Returns a new object of class '<em>F</em>'.
90:          * <!-- begin-user-doc -->
91:          * <!-- end-user-doc -->
92:          *
93:          * @return a new object of class '<em>F</em>'.
94:          * @generated
95:          */
96:         F createF();
97:
98:         /**
99:          * Returns the package supported by this factory.
100:          * <!-- begin-user-doc -->
101:          * <!-- end-user-doc -->
102:          *
103:          * @return the package supported by this factory.
104:          * @generated
105:          */
106:         TestPackage getTestPackage();
107:
108: } // TestFactory