blob: 593884762a788bb953b3ddec98d72ed23de3d266 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2013, 2019 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.qvtd.pivot.qvtschedule.impl;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.qvtd.pivot.qvtschedule.ExpressionEdge;
import org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Expression Edge</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public abstract class ExpressionEdgeImpl extends EdgeImpl implements ExpressionEdge {
/**
* The number of structural features of the '<em>Expression Edge</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
public static final int EXPRESSION_EDGE_FEATURE_COUNT = EdgeImpl.EDGE_FEATURE_COUNT + 0;
/**
* The number of operations of the '<em>Expression Edge</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
public static final int EXPRESSION_EDGE_OPERATION_COUNT = EdgeImpl.EDGE_OPERATION_COUNT + 0;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ExpressionEdgeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return QVTschedulePackage.Literals.EXPRESSION_EDGE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
@Override
public @NonNull String toString() {
return super.toString();
}
@Override
public @NonNull String getDisplayName() {
return "«expression»" + getTargetNode().getDisplayName();
}
@Override
public final boolean isComputation() {
return true;
}
@Override
public final boolean isExpression() {
return true;
}
} //ExpressionEdgeImpl