blob: de213c56c5c6f40e0997a5dd5531a8fd0ffb6c6d [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* 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.UiCommand;
import org.eclipse.osbp.ecview.semantic.uimodel.UiCommandBindableDef;
import org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Ui Command Bindable Def</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiCommandBindableDefImpl#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiCommandBindableDefImpl#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiCommandBindableDefImpl#getCommand <em>Command</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class UiCommandBindableDefImpl extends MinimalEObjectImpl.Container implements UiCommandBindableDef {
/**
* 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 #getCommand() <em>Command</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getCommand()
* @generated
* @ordered
*/
protected UiCommand command;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UiCommandBindableDefImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return UiModelPackage.Literals.UI_COMMAND_BINDABLE_DEF;
}
/**
* <!-- 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_COMMAND_BINDABLE_DEF__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_COMMAND_BINDABLE_DEF__NAME, oldName, name));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiCommand getCommand() {
if (command != null && command.eIsProxy()) {
InternalEObject oldCommand = (InternalEObject)command;
command = (UiCommand)eResolveProxy(oldCommand);
if (command != oldCommand) {
InternalEObject newCommand = (InternalEObject)command;
NotificationChain msgs = oldCommand.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND, null, null);
if (newCommand.eInternalContainer() == null) {
msgs = newCommand.eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND, null, msgs);
}
if (msgs != null) msgs.dispatch();
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND, oldCommand, command));
}
}
return command;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiCommand basicGetCommand() {
return command;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetCommand(UiCommand newCommand, NotificationChain msgs) {
UiCommand oldCommand = command;
command = newCommand;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND, oldCommand, newCommand);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setCommand(UiCommand newCommand) {
if (newCommand != command) {
NotificationChain msgs = null;
if (command != null)
msgs = ((InternalEObject)command).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND, null, msgs);
if (newCommand != null)
msgs = ((InternalEObject)newCommand).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND, null, msgs);
msgs = basicSetCommand(newCommand, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND, newCommand, newCommand));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND:
return basicSetCommand(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_COMMAND_BINDABLE_DEF__ID:
return getId();
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__NAME:
return getName();
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND:
if (resolve) return getCommand();
return basicGetCommand();
}
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_COMMAND_BINDABLE_DEF__ID:
setId((String)newValue);
return;
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__NAME:
setName((String)newValue);
return;
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND:
setCommand((UiCommand)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__ID:
setId(ID_EDEFAULT);
return;
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__NAME:
setName(NAME_EDEFAULT);
return;
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND:
setCommand((UiCommand)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__ID:
return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id);
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case UiModelPackage.UI_COMMAND_BINDABLE_DEF__COMMAND:
return command != 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();
}
} //UiCommandBindableDefImpl