Skip to content

Package: VTableFactory

VTableFactory

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: */
14: package org.eclipse.emf.ecp.view.spi.table.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.emf.ecp.view.spi.table.model.VTablePackage
25: * @generated
26: */
27: public interface VTableFactory extends EFactory {
28:         /**
29:          * The singleton instance of the factory.
30:          * <!-- begin-user-doc -->
31:          * <!-- end-user-doc -->
32:          *
33:          * @generated
34:          */
35:         VTableFactory eINSTANCE = org.eclipse.emf.ecp.view.spi.table.model.impl.VTableFactoryImpl.init();
36:
37:         /**
38:          * Returns a new object of class '<em>Control</em>'.
39:          * <!-- begin-user-doc -->
40:          * <!-- end-user-doc -->
41:          *
42:          * @return a new object of class '<em>Control</em>'.
43:          * @generated
44:          */
45:         VTableControl createTableControl();
46:
47:         /**
48:          * Returns a new object of class '<em>Domain Model Reference</em>'.
49:          * <!-- begin-user-doc -->
50:          * <!-- end-user-doc -->
51:          *
52:          * @return a new object of class '<em>Domain Model Reference</em>'.
53:          * @generated
54:          */
55:         VTableDomainModelReference createTableDomainModelReference();
56:
57:         /**
58:          * Returns a new object of class '<em>Read Only Column Configuration</em>'.
59:          * <!-- begin-user-doc -->
60:          * <!-- end-user-doc -->
61:          *
62:          * @return a new object of class '<em>Read Only Column Configuration</em>'.
63:          * @generated
64:          */
65:         VReadOnlyColumnConfiguration createReadOnlyColumnConfiguration();
66:
67:         /**
68:          * Returns a new object of class '<em>Width Configuration</em>'.
69:          * <!-- begin-user-doc -->
70:          *
71:          * @since 1.9
72:          * <!-- end-user-doc -->
73:          * @return a new object of class '<em>Width Configuration</em>'.
74:          * @generated
75:          */
76:         VWidthConfiguration createWidthConfiguration();
77:
78:         /**
79:          * Returns a new object of class '<em>Enablement Configuration</em>'.
80:          * <!-- begin-user-doc -->
81:          *
82:          * @since 1.13
83:          * <!-- end-user-doc -->
84:          * @return a new object of class '<em>Enablement Configuration</em>'.
85:          * @generated
86:          */
87:         VEnablementConfiguration createEnablementConfiguration();
88:
89:         /**
90:          * Returns the package supported by this factory.
91:          * <!-- begin-user-doc -->
92:          * <!-- end-user-doc -->
93:          *
94:          * @return the package supported by this factory.
95:          * @generated
96:          */
97:         VTablePackage getTablePackage();
98:
99: } // VTableFactory