blob: 1b1e48d2b0f4a5c317fcc890bb4613cf810a38c1 [file] [log] [blame]
/*
* Copyright (c) 2005, 2006 IBM Corporation and others.
* 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:
* IBM - initial API and implementation
*
* $Id: IntervalConstraintImpl.java,v 1.18 2006/12/14 15:49:30 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.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.uml2.uml.Interval;
import org.eclipse.uml2.uml.IntervalConstraint;
import org.eclipse.uml2.uml.Type;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.ValueSpecification;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Interval Constraint</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.uml2.uml.internal.impl.IntervalConstraintImpl#getSpecification <em>Specification</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class IntervalConstraintImpl
extends ConstraintImpl
implements IntervalConstraint {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected IntervalConstraintImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return UMLPackage.Literals.INTERVAL_CONSTRAINT;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification getSpecification() {
if (specification != null && specification.eIsProxy()) {
InternalEObject oldSpecification = (InternalEObject) specification;
specification = (ValueSpecification) eResolveProxy(oldSpecification);
if (specification != oldSpecification) {
InternalEObject newSpecification = (InternalEObject) specification;
NotificationChain msgs = oldSpecification.eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION, null,
null);
if (newSpecification.eInternalContainer() == null) {
msgs = newSpecification.eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION,
null, msgs);
}
if (msgs != null)
msgs.dispatch();
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE,
UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION,
oldSpecification, specification));
}
}
return specification;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification basicGetSpecification() {
return specification;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetSpecificationGen(
ValueSpecification newSpecification, NotificationChain msgs) {
ValueSpecification oldSpecification = specification;
specification = newSpecification;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this,
Notification.SET,
UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION,
oldSpecification, newSpecification);
if (msgs == null)
msgs = notification;
else
msgs.add(notification);
}
return msgs;
}
@Override
public NotificationChain basicSetSpecification(
ValueSpecification newSpecification, NotificationChain msgs) {
if (newSpecification != null && !(newSpecification instanceof Interval)) {
throw new IllegalArgumentException(newSpecification.toString());
}
return basicSetSpecificationGen(newSpecification, msgs);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setSpecification(ValueSpecification newSpecification) {
if (newSpecification != specification) {
NotificationChain msgs = null;
if (specification != null)
msgs = ((InternalEObject) specification).eInverseRemove(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION, null,
msgs);
if (newSpecification != null)
msgs = ((InternalEObject) newSpecification).eInverseAdd(this,
EOPPOSITE_FEATURE_BASE
- UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION, null,
msgs);
msgs = basicSetSpecification(newSpecification, msgs);
if (msgs != null)
msgs.dispatch();
} else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION,
newSpecification, newSpecification));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public ValueSpecification createSpecification(String name, Type type,
EClass eClass) {
ValueSpecification newSpecification = (ValueSpecification) create(eClass);
setSpecification(newSpecification);
if (name != null)
newSpecification.setName(name);
if (type != null)
newSpecification.setType(type);
return newSpecification;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isSetSpecification() {
return specification != null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case UMLPackage.INTERVAL_CONSTRAINT__EANNOTATIONS :
return getEAnnotations();
case UMLPackage.INTERVAL_CONSTRAINT__OWNED_ELEMENT :
return getOwnedElements();
case UMLPackage.INTERVAL_CONSTRAINT__OWNER :
if (resolve)
return getOwner();
return basicGetOwner();
case UMLPackage.INTERVAL_CONSTRAINT__OWNED_COMMENT :
return getOwnedComments();
case UMLPackage.INTERVAL_CONSTRAINT__NAME :
return getName();
case UMLPackage.INTERVAL_CONSTRAINT__VISIBILITY :
return getVisibility();
case UMLPackage.INTERVAL_CONSTRAINT__QUALIFIED_NAME :
return getQualifiedName();
case UMLPackage.INTERVAL_CONSTRAINT__CLIENT_DEPENDENCY :
return getClientDependencies();
case UMLPackage.INTERVAL_CONSTRAINT__NAMESPACE :
if (resolve)
return getNamespace();
return basicGetNamespace();
case UMLPackage.INTERVAL_CONSTRAINT__NAME_EXPRESSION :
if (resolve)
return getNameExpression();
return basicGetNameExpression();
case UMLPackage.INTERVAL_CONSTRAINT__OWNING_TEMPLATE_PARAMETER :
if (resolve)
return getOwningTemplateParameter();
return basicGetOwningTemplateParameter();
case UMLPackage.INTERVAL_CONSTRAINT__TEMPLATE_PARAMETER :
if (resolve)
return getTemplateParameter();
return basicGetTemplateParameter();
case UMLPackage.INTERVAL_CONSTRAINT__CONSTRAINED_ELEMENT :
return getConstrainedElements();
case UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION :
if (resolve)
return getSpecification();
return basicGetSpecification();
case UMLPackage.INTERVAL_CONSTRAINT__CONTEXT :
if (resolve)
return getContext();
return basicGetContext();
}
return eDynamicGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case UMLPackage.INTERVAL_CONSTRAINT__EANNOTATIONS :
return eAnnotations != null && !eAnnotations.isEmpty();
case UMLPackage.INTERVAL_CONSTRAINT__OWNED_ELEMENT :
return isSetOwnedElements();
case UMLPackage.INTERVAL_CONSTRAINT__OWNER :
return isSetOwner();
case UMLPackage.INTERVAL_CONSTRAINT__OWNED_COMMENT :
return ownedComments != null && !ownedComments.isEmpty();
case UMLPackage.INTERVAL_CONSTRAINT__NAME :
return isSetName();
case UMLPackage.INTERVAL_CONSTRAINT__VISIBILITY :
return isSetVisibility();
case UMLPackage.INTERVAL_CONSTRAINT__QUALIFIED_NAME :
return QUALIFIED_NAME_EDEFAULT == null
? getQualifiedName() != null
: !QUALIFIED_NAME_EDEFAULT.equals(getQualifiedName());
case UMLPackage.INTERVAL_CONSTRAINT__CLIENT_DEPENDENCY :
return clientDependencies != null
&& !clientDependencies.isEmpty();
case UMLPackage.INTERVAL_CONSTRAINT__NAMESPACE :
return isSetNamespace();
case UMLPackage.INTERVAL_CONSTRAINT__NAME_EXPRESSION :
return nameExpression != null;
case UMLPackage.INTERVAL_CONSTRAINT__OWNING_TEMPLATE_PARAMETER :
return basicGetOwningTemplateParameter() != null;
case UMLPackage.INTERVAL_CONSTRAINT__TEMPLATE_PARAMETER :
return templateParameter != null;
case UMLPackage.INTERVAL_CONSTRAINT__CONSTRAINED_ELEMENT :
return constrainedElements != null
&& !constrainedElements.isEmpty();
case UMLPackage.INTERVAL_CONSTRAINT__SPECIFICATION :
return isSetSpecification();
case UMLPackage.INTERVAL_CONSTRAINT__CONTEXT :
return basicGetContext() != null;
}
return eDynamicIsSet(featureID);
}
} //IntervalConstraintImpl