blob: 156fb0fb6c51c736975f6dc7d766a43d0ed9a678 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2011 - 2014 University of Padova, Intecs
*
*
* 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
*
*
*****************************************************************************/
package org.polarsys.chess.chessmlprofile.Dependability.ThreatsPropagation.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.EObjectImpl;
import org.eclipse.uml2.uml.StateMachine;
import org.polarsys.chess.chessmlprofile.Dependability.ThreatsPropagation.ErrorModel;
import org.polarsys.chess.chessmlprofile.Dependability.ThreatsPropagation.ThreatsPropagationPackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Error Model</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.polarsys.chess.chessmlprofile.Dependability.ThreatsPropagation.impl.ErrorModelImpl#getBase_StateMachine <em>Base State Machine</em>}</li>
* </ul>
*
* @generated
*/
public class ErrorModelImpl extends EObjectImpl implements ErrorModel {
/**
* The cached value of the '{@link #getBase_StateMachine() <em>Base State Machine</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getBase_StateMachine()
* @generated
* @ordered
*/
protected StateMachine base_StateMachine;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ErrorModelImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return ThreatsPropagationPackage.Literals.ERROR_MODEL;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public StateMachine getBase_StateMachine() {
if (base_StateMachine != null && base_StateMachine.eIsProxy()) {
InternalEObject oldBase_StateMachine = (InternalEObject)base_StateMachine;
base_StateMachine = (StateMachine)eResolveProxy(oldBase_StateMachine);
if (base_StateMachine != oldBase_StateMachine) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, ThreatsPropagationPackage.ERROR_MODEL__BASE_STATE_MACHINE, oldBase_StateMachine, base_StateMachine));
}
}
return base_StateMachine;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public StateMachine basicGetBase_StateMachine() {
return base_StateMachine;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setBase_StateMachine(StateMachine newBase_StateMachine) {
StateMachine oldBase_StateMachine = base_StateMachine;
base_StateMachine = newBase_StateMachine;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ThreatsPropagationPackage.ERROR_MODEL__BASE_STATE_MACHINE, oldBase_StateMachine, base_StateMachine));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case ThreatsPropagationPackage.ERROR_MODEL__BASE_STATE_MACHINE:
if (resolve) return getBase_StateMachine();
return basicGetBase_StateMachine();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case ThreatsPropagationPackage.ERROR_MODEL__BASE_STATE_MACHINE:
setBase_StateMachine((StateMachine)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case ThreatsPropagationPackage.ERROR_MODEL__BASE_STATE_MACHINE:
setBase_StateMachine((StateMachine)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case ThreatsPropagationPackage.ERROR_MODEL__BASE_STATE_MACHINE:
return base_StateMachine != null;
}
return super.eIsSet(featureID);
}
} //ErrorModelImpl