blob: eef13ef8a1b7d7c9462a882c65127e377b16ca9a [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.semantic.uimodel.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
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.osbp.ecview.semantic.uimodel.UiEmbeddable;
import org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage;
import org.eclipse.osbp.ecview.semantic.uimodel.UiRawBindable;
import org.eclipse.osbp.ecview.semantic.uimodel.UiRawBindablePathSegment;
import org.eclipse.osbp.ecview.semantic.uimodel.UiTypedBindableRawType;
import org.eclipse.osbp.ecview.semantic.uimodel.util.UiModelUtil;
/**
* <!-- begin-user-doc --> An implementation of the model object '
* <em><b>Ui Typed Bindable Raw Type</b></em>'. <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiTypedBindableRawTypeImpl#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiTypedBindableRawTypeImpl#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiTypedBindableRawTypeImpl#getRawBindable <em>Raw Bindable</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiTypedBindableRawTypeImpl#getRawBindablePath <em>Raw Bindable Path</em>}</li>
* </ul>
*
* @generated
*/
public class UiTypedBindableRawTypeImpl extends MinimalEObjectImpl.Container
implements UiTypedBindableRawType {
/**
* The default value of the '{@link #getId() <em>Id</em>}' attribute. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @see #getId()
* @generated
* @ordered
*/
protected static final String ID_EDEFAULT = null;
/**
* The cached value of the '{@link #getId() <em>Id</em>}' attribute. <!--
* begin-user-doc --> <!-- end-user-doc -->
*
* @see #getId()
* @generated
* @ordered
*/
protected String id = ID_EDEFAULT;
/**
* 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 #getRawBindable() <em>Raw Bindable</em>}' reference.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @see #getRawBindable()
* @generated
* @ordered
*/
protected UiRawBindable rawBindable;
/**
* The cached value of the '{@link #getRawBindablePath() <em>Raw Bindable Path</em>}' containment reference.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @see #getRawBindablePath()
* @generated
* @ordered
*/
protected UiRawBindablePathSegment rawBindablePath;
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
protected UiTypedBindableRawTypeImpl() {
super();
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return UiModelPackage.Literals.UI_TYPED_BINDABLE_RAW_TYPE;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public String getId() {
return id;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public void setId(String newId) {
String oldId = id;
id = newId;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__ID, oldId, id));
}
/**
* <!-- 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, UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__NAME, oldName, name));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public UiRawBindable getRawBindable() {
if (rawBindable != null && rawBindable.eIsProxy()) {
InternalEObject oldRawBindable = (InternalEObject)rawBindable;
rawBindable = (UiRawBindable)eResolveProxy(oldRawBindable);
if (rawBindable != oldRawBindable) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE, oldRawBindable, rawBindable));
}
}
return rawBindable;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public UiRawBindable basicGetRawBindable() {
return rawBindable;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public void setRawBindable(UiRawBindable newRawBindable) {
UiRawBindable oldRawBindable = rawBindable;
rawBindable = newRawBindable;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE, oldRawBindable, rawBindable));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public UiRawBindablePathSegment getRawBindablePath() {
if (rawBindablePath != null && rawBindablePath.eIsProxy()) {
InternalEObject oldRawBindablePath = (InternalEObject)rawBindablePath;
rawBindablePath = (UiRawBindablePathSegment)eResolveProxy(oldRawBindablePath);
if (rawBindablePath != oldRawBindablePath) {
InternalEObject newRawBindablePath = (InternalEObject)rawBindablePath;
NotificationChain msgs = oldRawBindablePath.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH, null, null);
if (newRawBindablePath.eInternalContainer() == null) {
msgs = newRawBindablePath.eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH, null, msgs);
}
if (msgs != null) msgs.dispatch();
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH, oldRawBindablePath, rawBindablePath));
}
}
return rawBindablePath;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public UiRawBindablePathSegment basicGetRawBindablePath() {
return rawBindablePath;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetRawBindablePath(
UiRawBindablePathSegment newRawBindablePath, NotificationChain msgs) {
UiRawBindablePathSegment oldRawBindablePath = rawBindablePath;
rawBindablePath = newRawBindablePath;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH, oldRawBindablePath, newRawBindablePath);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
public void setRawBindablePath(UiRawBindablePathSegment newRawBindablePath) {
if (newRawBindablePath != rawBindablePath) {
NotificationChain msgs = null;
if (rawBindablePath != null)
msgs = ((InternalEObject)rawBindablePath).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH, null, msgs);
if (newRawBindablePath != null)
msgs = ((InternalEObject)newRawBindablePath).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH, null, msgs);
msgs = basicSetRawBindablePath(newRawBindablePath, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH, newRawBindablePath, newRawBindablePath));
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd,
int featureID, NotificationChain msgs) {
switch (featureID) {
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH:
return basicSetRawBindablePath(null, 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 UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__ID:
return getId();
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__NAME:
return getName();
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE:
if (resolve) return getRawBindable();
return basicGetRawBindable();
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH:
if (resolve) return getRawBindablePath();
return basicGetRawBindablePath();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__ID:
setId((String)newValue);
return;
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__NAME:
setName((String)newValue);
return;
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE:
setRawBindable((UiRawBindable)newValue);
return;
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH:
setRawBindablePath((UiRawBindablePathSegment)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__ID:
setId(ID_EDEFAULT);
return;
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__NAME:
setName(NAME_EDEFAULT);
return;
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE:
setRawBindable((UiRawBindable)null);
return;
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH:
setRawBindablePath((UiRawBindablePathSegment)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__ID:
return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id);
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE:
return rawBindable != null;
case UiModelPackage.UI_TYPED_BINDABLE_RAW_TYPE__RAW_BINDABLE_PATH:
return rawBindablePath != null;
}
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(" (id: ");
result.append(id);
result.append(", name: ");
result.append(name);
result.append(')');
return result.toString();
}
@Override
public String toPathString() {
String result = "";
UiRawBindable lastBindable = getLastBindableInPath();
if (lastBindable instanceof UiEmbeddable) {
return UiModelUtil.getPathId((UiEmbeddable) lastBindable);
} else {
UiRawBindablePathSegment child = getRawBindablePath();
if (child != null) {
result = child.toPathString();
if (result != null && !result.equals("")) {
result = getRawBindable().getName() + "." + result;
} else {
result = getRawBindable().getName();
}
} else {
return getRawBindable().getName();
}
}
return result;
}
@Override
public UiRawBindable getLastBindableInPath() {
UiRawBindablePathSegment child = getRawBindablePath();
if (child != null) {
return child.getRawBindableOfLastSegment();
} else {
return getRawBindable();
}
}
} // UiTypedBindableRawTypeImpl