blob: 8b4a07b41a19cc823b9cbf2dd70dce7ce7e5106e [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.Nullable;
import org.eclipse.qvtd.pivot.qvtschedule.OperationNode;
import org.eclipse.qvtd.pivot.qvtschedule.QVTschedulePackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Operation Node</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public abstract class OperationNodeImpl extends MappingNodeImpl implements OperationNode {
/**
* The number of structural features of the '<em>Operation Node</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
public static final int OPERATION_NODE_FEATURE_COUNT = MappingNodeImpl.MAPPING_NODE_FEATURE_COUNT + 0;
/**
* The number of operations of the '<em>Operation Node</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
public static final int OPERATION_NODE_OPERATION_COUNT = MappingNodeImpl.MAPPING_NODE_OPERATION_COUNT + 0;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected OperationNodeImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return QVTschedulePackage.Literals.OPERATION_NODE;
}
@Override
public @Nullable String getShape() {
return "ellipse";
}
@Override
public boolean isExpression() {
return true;
}
@Override
public boolean isOperation() {
return true;
}
} //OperationNodeImpl