Skip to content

Package: VIndexsegmentFactory

VIndexsegmentFactory

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-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: * Lucas Koehler - initial API and implementation
13: */
14: package org.eclipse.emfforms.spi.view.indexsegment.model;
15:
16: import org.eclipse.emf.ecore.EFactory;
17:
18: /**
19: * <!-- begin-user-doc --> The <b>Factory</b> for the model. It provides a
20: * create method for each non-abstract class of the model. <!-- end-user-doc -->
21: *
22: * @see org.eclipse.emfforms.spi.view.indexsegment.model.VIndexsegmentPackage
23: * @generated
24: */
25: public interface VIndexsegmentFactory extends EFactory {
26:         /**
27:          * The singleton instance of the factory. <!-- begin-user-doc --> <!--
28:          * end-user-doc -->
29:          *
30:          * @generated
31:          */
32:         VIndexsegmentFactory eINSTANCE = org.eclipse.emfforms.spi.view.indexsegment.model.impl.VIndexsegmentFactoryImpl
33:                 .init();
34:
35:         /**
36:          * Returns a new object of class '<em>Index Domain Model Reference
37:          * Segment</em>'. <!-- begin-user-doc --> <!-- end-user-doc -->
38:          *
39:          * @return a new object of class '<em>Index Domain Model Reference
40:          * Segment</em>'.
41:          * @generated
42:          */
43:         VIndexDomainModelReferenceSegment createIndexDomainModelReferenceSegment();
44:
45:         /**
46:          * Returns the package supported by this factory. <!-- begin-user-doc --> <!--
47:          * end-user-doc -->
48:          *
49:          * @return the package supported by this factory.
50:          * @generated
51:          */
52:         VIndexsegmentPackage getIndexsegmentPackage();
53:
54: } // VIndexsegmentFactory