blob: 93c29208f3ec0f35b820dacebc84028062332be8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2015 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 org.eclipse.ocl.examples.codegen.cgmodel.impl;
import java.lang.reflect.Method;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.ocl.examples.codegen.cgmodel.CGModelPackage;
import org.eclipse.ocl.examples.codegen.cgmodel.CGNativeOperationCallExp;
import org.eclipse.ocl.examples.codegen.cgmodel.util.CGModelVisitor;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>CG Method Operation Call Exp</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.impl.CGNativeOperationCallExpImpl#getMethod <em>Method</em>}</li>
* <li>{@link org.eclipse.ocl.examples.codegen.cgmodel.impl.CGNativeOperationCallExpImpl#isThisIsSelf <em>This Is Self</em>}</li>
* </ul>
*
* @generated
*/
public class CGNativeOperationCallExpImpl extends CGOperationCallExpImpl implements CGNativeOperationCallExp {
/**
* The default value of the '{@link #getMethod() <em>Method</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getMethod()
* @generated
* @ordered
*/
protected static final Method METHOD_EDEFAULT = null;
/**
* The cached value of the '{@link #getMethod() <em>Method</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getMethod()
* @generated
* @ordered
*/
protected Method method = METHOD_EDEFAULT;
/**
* The default value of the '{@link #isThisIsSelf() <em>This Is Self</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isThisIsSelf()
* @generated
* @ordered
*/
protected static final boolean THIS_IS_SELF_EDEFAULT = false;
/**
* The cached value of the '{@link #isThisIsSelf() <em>This Is Self</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isThisIsSelf()
* @generated
* @ordered
*/
protected boolean thisIsSelf = THIS_IS_SELF_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected CGNativeOperationCallExpImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return CGModelPackage.Literals.CG_NATIVE_OPERATION_CALL_EXP;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Method getMethod() {
return method;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setMethod(Method newMethod) {
Method oldMethod = method;
method = newMethod;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__METHOD, oldMethod, method));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean isThisIsSelf() {
return thisIsSelf;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setThisIsSelf(boolean newThisIsSelf) {
boolean oldThisIsSelf = thisIsSelf;
thisIsSelf = newThisIsSelf;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__THIS_IS_SELF, oldThisIsSelf, thisIsSelf));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
return super.toString();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__METHOD:
return getMethod();
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__THIS_IS_SELF:
return isThisIsSelf();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__METHOD:
setMethod((Method)newValue);
return;
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__THIS_IS_SELF:
setThisIsSelf((Boolean)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__METHOD:
setMethod(METHOD_EDEFAULT);
return;
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__THIS_IS_SELF:
setThisIsSelf(THIS_IS_SELF_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__METHOD:
return METHOD_EDEFAULT == null ? method != null : !METHOD_EDEFAULT.equals(method);
case CGModelPackage.CG_NATIVE_OPERATION_CALL_EXP__THIS_IS_SELF:
return thisIsSelf != THIS_IS_SELF_EDEFAULT;
}
return super.eIsSet(featureID);
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public @Nullable <R> R accept(@NonNull CGModelVisitor<R> visitor) {
return visitor.visitCGNativeOperationCallExp(this);
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public boolean isBoxed() {
return false;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public boolean isEcore() {
return false;
}
/**
* {@inheritDoc}
* @generated
*/
@Override
public boolean isUnboxed() {
return true;
}
} //CGMethodOperationCallExpImpl