blob: 30b976d05285ea9c3d2e141be38121352832bae6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2018 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
*******************************************************************************/
/**
*/
package example1.target.impl;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.jdt.annotation.NonNull;
import example1.target.A3;
import example1.target.TargetPackage;
import example1.target.util.Visitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>A3</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public class A3Impl extends A2Impl implements A3 {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected A3Impl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return TargetPackage.Literals.A3;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public <R> R accept(@NonNull Visitor<R> visitor) {
return visitor.visitA3(this);
}
} //A3Impl