Skip to content

Package: VTLabelwidthFactory

VTLabelwidthFactory

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-2017 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: * Johannes Faltermeier - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.view.template.style.labelwidth.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: *
23: * @since 1.16
24: * <!-- end-user-doc -->
25: *
26: * @see org.eclipse.emf.ecp.view.template.style.labelwidth.model.VTLabelwidthPackage
27: * @generated
28: */
29: public interface VTLabelwidthFactory extends EFactory {
30:         /**
31:          * The singleton instance of the factory.
32:          * <!-- begin-user-doc -->
33:          * <!-- end-user-doc -->
34:          *
35:          * @generated
36:          */
37:         VTLabelwidthFactory eINSTANCE = org.eclipse.emf.ecp.view.template.style.labelwidth.model.impl.VTLabelwidthFactoryImpl
38:                 .init();
39:
40:         /**
41:          * Returns a new object of class '<em>Label Width Style Property</em>'.
42:          * <!-- begin-user-doc -->
43:          * <!-- end-user-doc -->
44:          *
45:          * @return a new object of class '<em>Label Width Style Property</em>'.
46:          * @generated
47:          */
48:         VTLabelWidthStyleProperty createLabelWidthStyleProperty();
49:
50:         /**
51:          * Returns the package supported by this factory.
52:          * <!-- begin-user-doc -->
53:          * <!-- end-user-doc -->
54:          *
55:          * @return the package supported by this factory.
56:          * @generated
57:          */
58:         VTLabelwidthPackage getLabelwidthPackage();
59:
60: } // VTLabelwidthFactory