blob: 6b59e97c58eadd83b47fff3cb8ad6c0a43a95893 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2018, 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.runtime.qvttrace.impl;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.qvtd.runtime.qvttrace.QVTtracePackage;
import org.eclipse.qvtd.runtime.qvttrace.TraceElement;
import org.eclipse.qvtd.runtime.qvttrace.util.QVTtraceVisitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Trace Element</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public abstract class TraceElementImpl extends EObjectImpl implements TraceElement {
/**
* The number of structural features of the '<em>Trace Element</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
public static final int TRACE_ELEMENT_FEATURE_COUNT = 0;
/**
* The number of operations of the '<em>Trace Element</em>' class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
* @ordered
*/
public static final int TRACE_ELEMENT_OPERATION_COUNT = 0;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected TraceElementImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return QVTtracePackage.Literals.TRACE_ELEMENT;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public <R> R accept(@NonNull QVTtraceVisitor<R> visitor) {
return visitor.visitTraceElement(this);
}
} //TraceElementImpl