Skip to content

Package: VTAlignmentFactory

VTAlignmentFactory

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-2014 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: * EclipseSource Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.template.style.alignment.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.template.style.alignment.model.VTAlignmentPackage
25: * @generated
26: */
27: public interface VTAlignmentFactory extends EFactory {
28:         /**
29:          * The singleton instance of the factory.
30:          * <!-- begin-user-doc -->
31:          * <!-- end-user-doc -->
32:          *
33:          * @generated
34:          */
35:         VTAlignmentFactory eINSTANCE = org.eclipse.emf.ecp.view.template.style.alignment.model.impl.VTAlignmentFactoryImpl
36:                 .init();
37:
38:         /**
39:          * Returns a new object of class '<em>Style Property</em>'.
40:          * <!-- begin-user-doc -->
41:          * <!-- end-user-doc -->
42:          *
43:          * @return a new object of class '<em>Style Property</em>'.
44:          * @generated
45:          */
46:         VTAlignmentStyleProperty createAlignmentStyleProperty();
47:
48:         /**
49:          * Returns a new object of class '<em>Control Label Alignment Style Property</em>'.
50:          * <!-- begin-user-doc -->
51:          *
52:          * @since 1.16
53:          * <!-- end-user-doc -->
54:          *
55:          * @return a new object of class '<em>Control Label Alignment Style Property</em>'.
56:          * @generated
57:          */
58:         VTControlLabelAlignmentStyleProperty createControlLabelAlignmentStyleProperty();
59:
60:         /**
61:          * Returns the package supported by this factory.
62:          * <!-- begin-user-doc -->
63:          * <!-- end-user-doc -->
64:          *
65:          * @return the package supported by this factory.
66:          * @generated
67:          */
68:         VTAlignmentPackage getAlignmentPackage();
69:
70: } // VTAlignmentFactory