blob: 3da476bc817c2f5d873a8f556d8cac1d5ffda7c0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Bosch Software Innovations GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* The Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Bosch Software Innovations GmbH - Please refer to git log
*
*******************************************************************************/
/**
*/
package org.eclipse.vorto.functionblock.impl;
import java.util.Collection;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EList;
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.MinimalEObjectImpl;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.eclipse.vorto.functionblock.Entity;
import org.eclipse.vorto.functionblock.FunctionBlock;
import org.eclipse.vorto.functionblock.FunctionblockModel;
import org.eclipse.vorto.functionblock.FunctionblockPackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Model</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.vorto.functionblock.impl.FunctionblockModelImpl#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.impl.FunctionblockModelImpl#getFunctionblock <em>Functionblock</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.impl.FunctionblockModelImpl#getElements <em>Elements</em>}</li>
* <li>{@link org.eclipse.vorto.functionblock.impl.FunctionblockModelImpl#getEnums <em>Enums</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class FunctionblockModelImpl extends MinimalEObjectImpl.Container implements FunctionblockModel {
/**
* The default value of the '{@link #getName() <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getName()
* @generated
* @ordered
*/
protected static final String NAME_EDEFAULT = null;
/**
* The cached value of the '{@link #getName() <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getName()
* @generated
* @ordered
*/
protected String name = NAME_EDEFAULT;
/**
* The cached value of the '{@link #getFunctionblock() <em>Functionblock</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getFunctionblock()
* @generated
* @ordered
*/
protected FunctionBlock functionblock;
/**
* The cached value of the '{@link #getElements() <em>Elements</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getElements()
* @generated
* @ordered
*/
protected EList<Entity> elements;
/**
* The cached value of the '{@link #getEnums() <em>Enums</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getEnums()
* @generated
* @ordered
*/
protected EList<org.eclipse.vorto.functionblock.Enum> enums;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected FunctionblockModelImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return FunctionblockPackage.Literals.FUNCTIONBLOCK_MODEL;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getName() {
return name;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setName(String newName) {
String oldName = name;
name = newName;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FunctionblockPackage.FUNCTIONBLOCK_MODEL__NAME, oldName, name));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public FunctionBlock getFunctionblock() {
return functionblock;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetFunctionblock(FunctionBlock newFunctionblock, NotificationChain msgs) {
FunctionBlock oldFunctionblock = functionblock;
functionblock = newFunctionblock;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK, oldFunctionblock, newFunctionblock);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setFunctionblock(FunctionBlock newFunctionblock) {
if (newFunctionblock != functionblock) {
NotificationChain msgs = null;
if (functionblock != null)
msgs = ((InternalEObject)functionblock).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK, null, msgs);
if (newFunctionblock != null)
msgs = ((InternalEObject)newFunctionblock).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK, null, msgs);
msgs = basicSetFunctionblock(newFunctionblock, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK, newFunctionblock, newFunctionblock));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<Entity> getElements() {
if (elements == null) {
elements = new EObjectContainmentEList<Entity>(Entity.class, this, FunctionblockPackage.FUNCTIONBLOCK_MODEL__ELEMENTS);
}
return elements;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<org.eclipse.vorto.functionblock.Enum> getEnums() {
if (enums == null) {
enums = new EObjectContainmentEList<org.eclipse.vorto.functionblock.Enum>(org.eclipse.vorto.functionblock.Enum.class, this, FunctionblockPackage.FUNCTIONBLOCK_MODEL__ENUMS);
}
return enums;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK:
return basicSetFunctionblock(null, msgs);
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ELEMENTS:
return ((InternalEList<?>)getElements()).basicRemove(otherEnd, msgs);
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ENUMS:
return ((InternalEList<?>)getEnums()).basicRemove(otherEnd, msgs);
}
return super.eInverseRemove(otherEnd, featureID, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__NAME:
return getName();
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK:
return getFunctionblock();
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ELEMENTS:
return getElements();
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ENUMS:
return getEnums();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("unchecked")
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__NAME:
setName((String)newValue);
return;
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK:
setFunctionblock((FunctionBlock)newValue);
return;
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ELEMENTS:
getElements().clear();
getElements().addAll((Collection<? extends Entity>)newValue);
return;
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ENUMS:
getEnums().clear();
getEnums().addAll((Collection<? extends org.eclipse.vorto.functionblock.Enum>)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__NAME:
setName(NAME_EDEFAULT);
return;
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK:
setFunctionblock((FunctionBlock)null);
return;
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ELEMENTS:
getElements().clear();
return;
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ENUMS:
getEnums().clear();
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__FUNCTIONBLOCK:
return functionblock != null;
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ELEMENTS:
return elements != null && !elements.isEmpty();
case FunctionblockPackage.FUNCTIONBLOCK_MODEL__ENUMS:
return enums != null && !enums.isEmpty();
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (name: ");
result.append(name);
result.append(')');
return result.toString();
}
} //FunctionblockModelImpl