blob: 4886e6090d8966cc39870cbe522424cf01233b86 [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.xtext.common.types.JvmTypeReference;
import org.eclipse.osbp.ecview.semantic.uimodel.UiModelPackage;
import org.eclipse.osbp.ecview.semantic.uimodel.UiValidator;
import org.eclipse.osbp.ecview.semantic.uimodel.UiValidatorDef;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Ui Validator Def</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiValidatorDefImpl#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiValidatorDefImpl#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiValidatorDefImpl#getValidator <em>Validator</em>}</li>
* <li>{@link org.eclipse.osbp.ecview.semantic.uimodel.impl.UiValidatorDefImpl#getJvmType <em>Jvm Type</em>}</li>
* </ul>
*
* @generated
*/
public class UiValidatorDefImpl extends MinimalEObjectImpl.Container implements UiValidatorDef {
/**
* 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 #getValidator() <em>Validator</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getValidator()
* @generated
* @ordered
*/
protected UiValidator validator;
/**
* The cached value of the '{@link #getJvmType() <em>Jvm Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getJvmType()
* @generated
* @ordered
*/
protected JvmTypeReference jvmType;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected UiValidatorDefImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return UiModelPackage.Literals.UI_VALIDATOR_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_VALIDATOR_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_VALIDATOR_DEF__NAME, oldName, name));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiValidator getValidator() {
if (validator != null && validator.eIsProxy()) {
InternalEObject oldValidator = (InternalEObject)validator;
validator = (UiValidator)eResolveProxy(oldValidator);
if (validator != oldValidator) {
InternalEObject newValidator = (InternalEObject)validator;
NotificationChain msgs = oldValidator.eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR, null, null);
if (newValidator.eInternalContainer() == null) {
msgs = newValidator.eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR, null, msgs);
}
if (msgs != null) msgs.dispatch();
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR, oldValidator, validator));
}
}
return validator;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public UiValidator basicGetValidator() {
return validator;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetValidator(UiValidator newValidator, NotificationChain msgs) {
UiValidator oldValidator = validator;
validator = newValidator;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR, oldValidator, newValidator);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setValidator(UiValidator newValidator) {
if (newValidator != validator) {
NotificationChain msgs = null;
if (validator != null)
msgs = ((InternalEObject)validator).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR, null, msgs);
if (newValidator != null)
msgs = ((InternalEObject)newValidator).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR, null, msgs);
msgs = basicSetValidator(newValidator, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR, newValidator, newValidator));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public JvmTypeReference getJvmType() {
if (jvmType != null && jvmType.eIsProxy()) {
InternalEObject oldJvmType = (InternalEObject)jvmType;
jvmType = (JvmTypeReference)eResolveProxy(oldJvmType);
if (jvmType != oldJvmType) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, UiModelPackage.UI_VALIDATOR_DEF__JVM_TYPE, oldJvmType, jvmType));
}
}
return jvmType;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public JvmTypeReference basicGetJvmType() {
return jvmType;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setJvmType(JvmTypeReference newJvmType) {
JvmTypeReference oldJvmType = jvmType;
jvmType = newJvmType;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, UiModelPackage.UI_VALIDATOR_DEF__JVM_TYPE, oldJvmType, jvmType));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR:
return basicSetValidator(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_VALIDATOR_DEF__ID:
return getId();
case UiModelPackage.UI_VALIDATOR_DEF__NAME:
return getName();
case UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR:
if (resolve) return getValidator();
return basicGetValidator();
case UiModelPackage.UI_VALIDATOR_DEF__JVM_TYPE:
if (resolve) return getJvmType();
return basicGetJvmType();
}
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_VALIDATOR_DEF__ID:
setId((String)newValue);
return;
case UiModelPackage.UI_VALIDATOR_DEF__NAME:
setName((String)newValue);
return;
case UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR:
setValidator((UiValidator)newValue);
return;
case UiModelPackage.UI_VALIDATOR_DEF__JVM_TYPE:
setJvmType((JvmTypeReference)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case UiModelPackage.UI_VALIDATOR_DEF__ID:
setId(ID_EDEFAULT);
return;
case UiModelPackage.UI_VALIDATOR_DEF__NAME:
setName(NAME_EDEFAULT);
return;
case UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR:
setValidator((UiValidator)null);
return;
case UiModelPackage.UI_VALIDATOR_DEF__JVM_TYPE:
setJvmType((JvmTypeReference)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case UiModelPackage.UI_VALIDATOR_DEF__ID:
return ID_EDEFAULT == null ? id != null : !ID_EDEFAULT.equals(id);
case UiModelPackage.UI_VALIDATOR_DEF__NAME:
return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name);
case UiModelPackage.UI_VALIDATOR_DEF__VALIDATOR:
return validator != null;
case UiModelPackage.UI_VALIDATOR_DEF__JVM_TYPE:
return jvmType != 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();
}
} //UiValidatorDefImpl