Skip to content

Package: VDiffmergeFactory

VDiffmergeFactory

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-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.spi.diffmerge.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.emf.ecp.spi.diffmerge.model.VDiffmergePackage
23: * @generated
24: */
25: public interface VDiffmergeFactory extends EFactory {
26:         /**
27:          * The singleton instance of the factory.
28:          * <!-- begin-user-doc --> <!--
29:          * end-user-doc -->
30:          *
31:          * @generated
32:          */
33:         VDiffmergeFactory eINSTANCE = org.eclipse.emf.ecp.spi.diffmerge.model.impl.VDiffmergeFactoryImpl.init();
34:
35:         /**
36:          * Returns a new object of class '<em>Diff Attachment</em>'. <!--
37:          * begin-user-doc --> <!-- end-user-doc -->
38:          *
39:          * @return a new object of class '<em>Diff Attachment</em>'.
40:          * @generated
41:          */
42:         VDiffAttachment createDiffAttachment();
43:
44:         /**
45:          * Returns the package supported by this factory.
46:          * <!-- begin-user-doc -->
47:          * <!-- end-user-doc -->
48:          *
49:          * @return the package supported by this factory.
50:          * @generated
51:          */
52:         VDiffmergePackage getDiffmergePackage();
53:
54: } // VDiffmergeFactory