blob: bdbd5dbdde5c1a46449d8633e01cfe40dad9d981 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.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.Namespace;
import example1.target.TargetPackage;
import example1.target.util.Visitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Namespace</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public class NamespaceImpl extends NamedElementImpl implements Namespace {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected NamespaceImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return TargetPackage.Literals.NAMESPACE;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public <R> R accept(@NonNull Visitor<R> visitor) {
return visitor.visitNamespace(this);
}
} //NamespaceImpl