Skip to content

Package: ConditionImpl

ConditionImpl

nameinstructionbranchcomplexitylinemethod
ConditionImpl()
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%
eStaticClass()
M: 2 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2011-2013 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 GmbH - initial API and implementation
13: ******************************************************************************/
14: package org.eclipse.emf.ecp.view.spi.rule.model.impl;
15:
16: import org.eclipse.emf.ecore.EClass;
17: import org.eclipse.emf.ecore.impl.EObjectImpl;
18: import org.eclipse.emf.ecp.view.spi.rule.model.Condition;
19: import org.eclipse.emf.ecp.view.spi.rule.model.RulePackage;
20:
21: /**
22: * <!-- begin-user-doc -->
23: * An implementation of the model object '<em><b>Condition</b></em>'.
24: *
25: * @since 1.2
26: * <!-- end-user-doc -->
27: *
28: * @generated
29: */
30: public abstract class ConditionImpl extends EObjectImpl implements Condition {
31:         /**
32:          * <!-- begin-user-doc -->
33:          * <!-- end-user-doc -->
34:          *
35:          * @generated
36:          */
37:         protected ConditionImpl() {
38:                 super();
39:         }
40:
41:         /**
42:          * <!-- begin-user-doc -->
43:          * <!-- end-user-doc -->
44:          *
45:          * @generated
46:          */
47:         @Override
48:         protected EClass eStaticClass() {
49:                 return RulePackage.Literals.CONDITION;
50:         }
51:
52: } // ConditionImpl