blob: 3dd2e7ccbb276a5e928e78ce6c201350d835978e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2015 CEA LIST 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(CEA LIST) - Initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.examples.codegen.cgmodel.impl;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.examples.codegen.cgmodel.CGLocalVariable;
import org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage;
import org.eclipse.ocl.examples.codegen.cgmodel.CGValuedElement;
import org.eclipse.ocl.examples.codegen.cgmodel.util.CGModelVisitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>CG Local Variable</b></em>'.
* <!-- end-user-doc -->
*
* @generated
*/
public class CGLocalVariableImpl extends CGVariableImpl implements CGLocalVariable {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CGLocalVariableImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return CGModelPackage.Literals.CG_LOCAL_VARIABLE;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public @Nullable <R> R accept(@NonNull CGModelVisitor<R> visitor) {
return visitor.visitCGLocalVariable(this);
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public @NonNull CGValuedElement getNamedValue() {
return init != null ? init.getNamedValue() : this;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public @NonNull CGValuedElement getTypedValue() {
return init != null ? init.getTypedValue() : this;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public @Nullable String getValueName() {
return init != null ? init.getValueName() : null;
}
} //CGLocalVariableImpl