blob: 0d2e61a8917a171a5b961bd4ee829d894899d486 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Lunifera GmbH (Gross Enzersdorf), Loetz GmbH&Co.KG (Heidelberg)
* 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.dsl.semantic.dto.impl;
import com.google.common.base.Objects;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
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.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;
import org.eclipse.osbp.dsl.semantic.common.types.LDatatypeConstraint;
import org.eclipse.osbp.dsl.semantic.common.types.LKeyAndValue;
import org.eclipse.osbp.dsl.semantic.common.types.LReference;
import org.eclipse.osbp.dsl.semantic.common.types.OSBPTypesPackage;
import org.eclipse.osbp.dsl.semantic.dto.LDto;
import org.eclipse.osbp.dsl.semantic.dto.LDtoAbstractReference;
import org.eclipse.osbp.dsl.semantic.dto.LDtoInheritedReference;
import org.eclipse.osbp.dsl.semantic.dto.OSBPDtoPackage;
import org.eclipse.xtext.common.types.JvmTypeReference;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>LDto Abstract Reference</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.osbp.dsl.semantic.dto.impl.LDtoAbstractReferenceImpl#isLazy <em>Lazy</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.dto.impl.LDtoAbstractReferenceImpl#isCascading <em>Cascading</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.dto.impl.LDtoAbstractReferenceImpl#getProperties <em>Properties</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.dto.impl.LDtoAbstractReferenceImpl#getConstraints <em>Constraints</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.dto.impl.LDtoAbstractReferenceImpl#getType <em>Type</em>}</li>
* <li>{@link org.eclipse.osbp.dsl.semantic.dto.impl.LDtoAbstractReferenceImpl#getTypeJvm <em>Type Jvm</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public abstract class LDtoAbstractReferenceImpl extends LDtoFeatureImpl implements LDtoAbstractReference {
/**
* The default value of the '{@link #isLazy() <em>Lazy</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isLazy()
* @generated
* @ordered
*/
protected static final boolean LAZY_EDEFAULT = false;
/**
* The cached value of the '{@link #isLazy() <em>Lazy</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isLazy()
* @generated
* @ordered
*/
protected boolean lazy = LAZY_EDEFAULT;
/**
* The default value of the '{@link #isCascading() <em>Cascading</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isCascading()
* @generated
* @ordered
*/
protected static final boolean CASCADING_EDEFAULT = false;
/**
* The cached value of the '{@link #isCascading() <em>Cascading</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isCascading()
* @generated
* @ordered
*/
protected boolean cascading = CASCADING_EDEFAULT;
/**
* The cached value of the '{@link #getProperties() <em>Properties</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getProperties()
* @generated
* @ordered
*/
protected EList<LKeyAndValue> properties;
/**
* The cached value of the '{@link #getConstraints() <em>Constraints</em>}' containment reference list.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getConstraints()
* @generated
* @ordered
*/
protected EList<LDatatypeConstraint> constraints;
/**
* The cached value of the '{@link #getType() <em>Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getType()
* @generated
* @ordered
*/
protected LDto type;
/**
* The cached value of the '{@link #getTypeJvm() <em>Type Jvm</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getTypeJvm()
* @generated
* @ordered
*/
protected JvmTypeReference typeJvm;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected LDtoAbstractReferenceImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return OSBPDtoPackage.Literals.LDTO_ABSTRACT_REFERENCE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isLazy() {
return lazy;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setLazy(boolean newLazy) {
boolean oldLazy = lazy;
lazy = newLazy;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__LAZY, oldLazy, lazy));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isCascading() {
return cascading;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setCascading(boolean newCascading) {
boolean oldCascading = cascading;
cascading = newCascading;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CASCADING, oldCascading, cascading));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<LKeyAndValue> getProperties() {
if (properties == null) {
properties = new EObjectContainmentEList<LKeyAndValue>(LKeyAndValue.class, this, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES);
}
return properties;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public EList<LDatatypeConstraint> getConstraints() {
if (constraints == null) {
constraints = new EObjectContainmentEList<LDatatypeConstraint>(LDatatypeConstraint.class, this, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS);
}
return constraints;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public LDto getType() {
if (type != null && type.eIsProxy()) {
InternalEObject oldType = (InternalEObject)type;
type = (LDto)eResolveProxy(oldType);
if (type != oldType) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE, oldType, type));
}
}
return type;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public LDto basicGetType() {
return type;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setType(LDto newType) {
LDto oldType = type;
type = newType;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE, oldType, type));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public JvmTypeReference getTypeJvm() {
return typeJvm;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetTypeJvm(JvmTypeReference newTypeJvm, NotificationChain msgs) {
JvmTypeReference oldTypeJvm = typeJvm;
typeJvm = newTypeJvm;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM, oldTypeJvm, newTypeJvm);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setTypeJvm(JvmTypeReference newTypeJvm) {
if (newTypeJvm != typeJvm) {
NotificationChain msgs = null;
if (typeJvm != null)
msgs = ((InternalEObject)typeJvm).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM, null, msgs);
if (newTypeJvm != null)
msgs = ((InternalEObject)newTypeJvm).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM, null, msgs);
msgs = basicSetTypeJvm(newTypeJvm, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM, newTypeJvm, newTypeJvm));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public List<LKeyAndValue> getResolvedProperties() {
if ((this instanceof LDtoInheritedReference)) {
final LDtoInheritedReference temp = ((LDtoInheritedReference) this);
LReference _inheritedFeature = temp.getInheritedFeature();
boolean _equals = Objects.equal(_inheritedFeature, null);
if (_equals) {
return Collections.<LKeyAndValue>emptyList();
}
LReference _inheritedFeature_1 = temp.getInheritedFeature();
EList<LKeyAndValue> _properties = _inheritedFeature_1.getProperties();
final ArrayList<LKeyAndValue> result = new ArrayList<LKeyAndValue>(_properties);
EList<LKeyAndValue> _properties_1 = this.getProperties();
result.addAll(_properties_1);
return result;
}
else {
return this.getProperties();
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
switch (featureID) {
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES:
return ((InternalEList<?>)getProperties()).basicRemove(otherEnd, msgs);
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS:
return ((InternalEList<?>)getConstraints()).basicRemove(otherEnd, msgs);
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM:
return basicSetTypeJvm(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 OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__LAZY:
return isLazy();
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CASCADING:
return isCascading();
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES:
return getProperties();
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS:
return getConstraints();
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE:
if (resolve) return getType();
return basicGetType();
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM:
return getTypeJvm();
}
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 OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__LAZY:
setLazy((Boolean)newValue);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CASCADING:
setCascading((Boolean)newValue);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES:
getProperties().clear();
getProperties().addAll((Collection<? extends LKeyAndValue>)newValue);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS:
getConstraints().clear();
getConstraints().addAll((Collection<? extends LDatatypeConstraint>)newValue);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE:
setType((LDto)newValue);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM:
setTypeJvm((JvmTypeReference)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__LAZY:
setLazy(LAZY_EDEFAULT);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CASCADING:
setCascading(CASCADING_EDEFAULT);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES:
getProperties().clear();
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS:
getConstraints().clear();
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE:
setType((LDto)null);
return;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM:
setTypeJvm((JvmTypeReference)null);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__LAZY:
return lazy != LAZY_EDEFAULT;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CASCADING:
return cascading != CASCADING_EDEFAULT;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES:
return properties != null && !properties.isEmpty();
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS:
return constraints != null && !constraints.isEmpty();
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE:
return type != null;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__TYPE_JVM:
return typeJvm != null;
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int eBaseStructuralFeatureID(int derivedFeatureID, Class<?> baseClass) {
if (baseClass == LReference.class) {
switch (derivedFeatureID) {
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__LAZY: return OSBPTypesPackage.LREFERENCE__LAZY;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CASCADING: return OSBPTypesPackage.LREFERENCE__CASCADING;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES: return OSBPTypesPackage.LREFERENCE__PROPERTIES;
case OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS: return OSBPTypesPackage.LREFERENCE__CONSTRAINTS;
default: return -1;
}
}
return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public int eDerivedStructuralFeatureID(int baseFeatureID, Class<?> baseClass) {
if (baseClass == LReference.class) {
switch (baseFeatureID) {
case OSBPTypesPackage.LREFERENCE__LAZY: return OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__LAZY;
case OSBPTypesPackage.LREFERENCE__CASCADING: return OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CASCADING;
case OSBPTypesPackage.LREFERENCE__PROPERTIES: return OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__PROPERTIES;
case OSBPTypesPackage.LREFERENCE__CONSTRAINTS: return OSBPDtoPackage.LDTO_ABSTRACT_REFERENCE__CONSTRAINTS;
default: return -1;
}
}
return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) return super.toString();
StringBuffer result = new StringBuffer(super.toString());
result.append(" (lazy: ");
result.append(lazy);
result.append(", cascading: ");
result.append(cascading);
result.append(')');
return result.toString();
}
} //LDtoAbstractReferenceImpl