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: 1
100%
M: 0 C: 1
100%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2013 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: * Eugen Neufeld - initial API and implementation
13: * Johannes Faltermeier
14: *
15: *******************************************************************************/
16: package org.eclipse.emf.ecp.validation.test.test;
17:
18: import org.eclipse.emf.ecore.EFactory;
19:
20: /**
21: * <!-- begin-user-doc -->
22: * The <b>Factory</b> for the model.
23: * It provides a create method for each non-abstract class of the model.
24: * <!-- end-user-doc -->
25: *
26: * @see org.eclipse.emf.ecp.validation.test.test.TestPackage
27: * @generated
28: */
29: public interface TestFactory extends EFactory {
30:         /**
31:          * The singleton instance of the factory.
32:          * <!-- begin-user-doc -->
33:          * <!-- end-user-doc -->
34:          *
35:          * @generated
36:          */
37:         TestFactory eINSTANCE = org.eclipse.emf.ecp.validation.test.test.impl.TestFactoryImpl.init();
38:
39:         /**
40:          * Returns a new object of class '<em>Library</em>'.
41:          * <!-- begin-user-doc -->
42:          * <!-- end-user-doc -->
43:          *
44:          * @return a new object of class '<em>Library</em>'.
45:          * @generated
46:          */
47:         Library createLibrary();
48:
49:         /**
50:          * Returns a new object of class '<em>Writer</em>'.
51:          * <!-- begin-user-doc -->
52:          * <!-- end-user-doc -->
53:          *
54:          * @return a new object of class '<em>Writer</em>'.
55:          * @generated
56:          */
57:         Writer createWriter();
58:
59:         /**
60:          * Returns a new object of class '<em>Book</em>'.
61:          * <!-- begin-user-doc -->
62:          * <!-- end-user-doc -->
63:          *
64:          * @return a new object of class '<em>Book</em>'.
65:          * @generated
66:          */
67:         Book createBook();
68:
69:         /**
70:          * Returns the package supported by this factory.
71:          * <!-- begin-user-doc -->
72:          * <!-- end-user-doc -->
73:          *
74:          * @return the package supported by this factory.
75:          * @generated
76:          */
77:         TestPackage getTestPackage();
78:
79: } // TestFactory