IfConditionImpl.java
/**
* Copyright (c) 2004-2025 Carnegie Mellon University and others. (see Contributors file).
* All Rights Reserved.
*
* NO WARRANTY. ALL MATERIAL IS FURNISHED ON AN "AS-IS" BASIS. CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY
* KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE
* OR MERCHANTABILITY, EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL. CARNEGIE MELLON UNIVERSITY DOES NOT
* MAKE ANY WARRANTY OF ANY KIND WITH RESPECT TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
* SPDX-License-Identifier: EPL-2.0
*
* Created, in part, with funding and support from the United States Government. (see Acknowledgments file).
*
* This program includes and/or can make use of certain third party source code, object code, documentation and other
* files ("Third Party Software"). The Third Party Software that is used by this program is dependent upon your system
* configuration. By using this program, You agree to comply with any and all relevant Third Party Software terms and
* conditions contained in any such Third Party Software or separate license file distributed with such Third Party
* Software. The parties who own the Third Party Software ("Third Party Licensors") are intended third party benefici-
* aries to this license with respect to the terms applicable to their Third Party Software. Third Party Software li-
* censes only apply to the Third Party Software and not any other portion of this program or this program as a whole.
*/
package org.osate.xtext.aadl2.errormodel.errorModel.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import org.osate.xtext.aadl2.errormodel.errorModel.ErrorModelPackage;
import org.osate.xtext.aadl2.errormodel.errorModel.IfCondition;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>If Condition</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.osate.xtext.aadl2.errormodel.errorModel.impl.IfConditionImpl#getDescription <em>Description</em>}</li>
* <li>{@link org.osate.xtext.aadl2.errormodel.errorModel.impl.IfConditionImpl#getResoluteFunction <em>Resolute Function</em>}</li>
* <li>{@link org.osate.xtext.aadl2.errormodel.errorModel.impl.IfConditionImpl#getJavaMethod <em>Java Method</em>}</li>
* </ul>
*
* @generated
*/
public class IfConditionImpl extends MinimalEObjectImpl.Container implements IfCondition
{
/**
* The default value of the '{@link #getDescription() <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDescription()
* @generated
* @ordered
*/
protected static final String DESCRIPTION_EDEFAULT = null;
/**
* The cached value of the '{@link #getDescription() <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDescription()
* @generated
* @ordered
*/
protected String description = DESCRIPTION_EDEFAULT;
/**
* The cached value of the '{@link #getResoluteFunction() <em>Resolute Function</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getResoluteFunction()
* @generated
* @ordered
*/
protected EObject resoluteFunction;
/**
* The default value of the '{@link #getJavaMethod() <em>Java Method</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getJavaMethod()
* @generated
* @ordered
*/
protected static final String JAVA_METHOD_EDEFAULT = null;
/**
* The cached value of the '{@link #getJavaMethod() <em>Java Method</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getJavaMethod()
* @generated
* @ordered
*/
protected String javaMethod = JAVA_METHOD_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected IfConditionImpl()
{
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass()
{
return ErrorModelPackage.Literals.IF_CONDITION;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String getDescription()
{
return description;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setDescription(String newDescription)
{
String oldDescription = description;
description = newDescription;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ErrorModelPackage.IF_CONDITION__DESCRIPTION, oldDescription, description));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public EObject getResoluteFunction()
{
if (resoluteFunction != null && resoluteFunction.eIsProxy())
{
InternalEObject oldResoluteFunction = (InternalEObject)resoluteFunction;
resoluteFunction = eResolveProxy(oldResoluteFunction);
if (resoluteFunction != oldResoluteFunction)
{
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, ErrorModelPackage.IF_CONDITION__RESOLUTE_FUNCTION, oldResoluteFunction, resoluteFunction));
}
}
return resoluteFunction;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EObject basicGetResoluteFunction()
{
return resoluteFunction;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setResoluteFunction(EObject newResoluteFunction)
{
EObject oldResoluteFunction = resoluteFunction;
resoluteFunction = newResoluteFunction;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ErrorModelPackage.IF_CONDITION__RESOLUTE_FUNCTION, oldResoluteFunction, resoluteFunction));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String getJavaMethod()
{
return javaMethod;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void setJavaMethod(String newJavaMethod)
{
String oldJavaMethod = javaMethod;
javaMethod = newJavaMethod;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ErrorModelPackage.IF_CONDITION__JAVA_METHOD, oldJavaMethod, javaMethod));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType)
{
switch (featureID)
{
case ErrorModelPackage.IF_CONDITION__DESCRIPTION:
return getDescription();
case ErrorModelPackage.IF_CONDITION__RESOLUTE_FUNCTION:
if (resolve) return getResoluteFunction();
return basicGetResoluteFunction();
case ErrorModelPackage.IF_CONDITION__JAVA_METHOD:
return getJavaMethod();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue)
{
switch (featureID)
{
case ErrorModelPackage.IF_CONDITION__DESCRIPTION:
setDescription((String)newValue);
return;
case ErrorModelPackage.IF_CONDITION__RESOLUTE_FUNCTION:
setResoluteFunction((EObject)newValue);
return;
case ErrorModelPackage.IF_CONDITION__JAVA_METHOD:
setJavaMethod((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID)
{
switch (featureID)
{
case ErrorModelPackage.IF_CONDITION__DESCRIPTION:
setDescription(DESCRIPTION_EDEFAULT);
return;
case ErrorModelPackage.IF_CONDITION__RESOLUTE_FUNCTION:
setResoluteFunction((EObject)null);
return;
case ErrorModelPackage.IF_CONDITION__JAVA_METHOD:
setJavaMethod(JAVA_METHOD_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID)
{
switch (featureID)
{
case ErrorModelPackage.IF_CONDITION__DESCRIPTION:
return DESCRIPTION_EDEFAULT == null ? description != null : !DESCRIPTION_EDEFAULT.equals(description);
case ErrorModelPackage.IF_CONDITION__RESOLUTE_FUNCTION:
return resoluteFunction != null;
case ErrorModelPackage.IF_CONDITION__JAVA_METHOD:
return JAVA_METHOD_EDEFAULT == null ? javaMethod != null : !JAVA_METHOD_EDEFAULT.equals(javaMethod);
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString()
{
if (eIsProxy()) return super.toString();
StringBuilder result = new StringBuilder(super.toString());
result.append(" (description: ");
result.append(description);
result.append(", javaMethod: ");
result.append(javaMethod);
result.append(')');
return result.toString();
}
} //IfConditionImpl