Skip to content

Package: VTWrapFactory

VTWrapFactory

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-2018 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.wrap.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.17
24: * <!-- end-user-doc -->
25: *
26: * @see org.eclipse.emf.ecp.view.template.style.wrap.model.VTWrapPackage
27: * @generated
28: */
29: public interface VTWrapFactory extends EFactory {
30:         /**
31:          * The singleton instance of the factory.
32:          * <!-- begin-user-doc -->
33:          * <!-- end-user-doc -->
34:          *
35:          * @generated
36:          */
37:         VTWrapFactory eINSTANCE = org.eclipse.emf.ecp.view.template.style.wrap.model.impl.VTWrapFactoryImpl.init();
38:
39:         /**
40:          * Returns a new object of class '<em>Label Wrap Style Property</em>'.
41:          * <!-- begin-user-doc -->
42:          * <!-- end-user-doc -->
43:          *
44:          * @return a new object of class '<em>Label Wrap Style Property</em>'.
45:          * @generated
46:          */
47:         VTLabelWrapStyleProperty createLabelWrapStyleProperty();
48:
49:         /**
50:          * Returns the package supported by this factory.
51:          * <!-- begin-user-doc -->
52:          * <!-- end-user-doc -->
53:          *
54:          * @return the package supported by this factory.
55:          * @generated
56:          */
57:         VTWrapPackage getWrapPackage();
58:
59: } // VTWrapFactory