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-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: * Eugen Neufeld - initial API and implementation
13: * Lucas Koehler - extension for EnumComboViewerRenderer_PTest
14: */
15: package org.eclipse.emf.ecp.view.core.swt.test.model;
16:
17: import org.eclipse.emf.ecore.EFactory;
18:
19: /**
20: * <!-- begin-user-doc -->
21: * The <b>Factory</b> for the model.
22: * It provides a create method for each non-abstract class of the model.
23: * <!-- end-user-doc -->
24: *
25: * @see org.eclipse.emf.ecp.view.core.swt.test.model.TestPackage
26: * @generated
27: */
28: public interface TestFactory extends EFactory {
29:         /**
30:          * The singleton instance of the factory.
31:          * <!-- begin-user-doc -->
32:          * <!-- end-user-doc -->
33:          *
34:          * @generated
35:          */
36:         TestFactory eINSTANCE = org.eclipse.emf.ecp.view.core.swt.test.model.impl.TestFactoryImpl.init();
37:
38:         /**
39:          * Returns a new object of class '<em>Simple Test Object</em>'.
40:          * <!-- begin-user-doc -->
41:          * <!-- end-user-doc -->
42:          *
43:          * @return a new object of class '<em>Simple Test Object</em>'.
44:          * @generated
45:          */
46:         SimpleTestObject createSimpleTestObject();
47:
48:         /**
49:          * Returns a new object of class '<em>Inner Object</em>'.
50:          * <!-- begin-user-doc -->
51:          * <!-- end-user-doc -->
52:          *
53:          * @return a new object of class '<em>Inner Object</em>'.
54:          * @generated
55:          */
56:         InnerObject createInnerObject();
57:
58:         /**
59:          * Returns the package supported by this factory.
60:          * <!-- begin-user-doc -->
61:          * <!-- end-user-doc -->
62:          *
63:          * @return the package supported by this factory.
64:          * @generated
65:          */
66:         TestPackage getTestPackage();
67:
68: } // TestFactory