blob: b3a325da1006990f8d810b8d17a18cee47de3644 [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: TimeIntervalImpl.java,v 1.13 2006/12/14 15:49:31 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.uml2.uml.TimeExpression;
import org.eclipse.uml2.uml.TimeInterval;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.ValueSpecification;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Time Interval</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.uml2.uml.internal.impl.TimeIntervalImpl#getMax <em>Max</em>}</li>
* <li>{@link org.eclipse.uml2.uml.internal.impl.TimeIntervalImpl#getMin <em>Min</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class TimeIntervalImpl
extends IntervalImpl
implements TimeInterval {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected TimeIntervalImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return UMLPackage.Literals.TIME_INTERVAL;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification getMax() {
if (max != null && max.eIsProxy()) {
InternalEObject oldMax = (InternalEObject) max;
max = (ValueSpecification) eResolveProxy(oldMax);
if (max != oldMax) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE,
UMLPackage.TIME_INTERVAL__MAX, oldMax, max));
}
}
return max;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification basicGetMax() {
return max;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setMaxGen(ValueSpecification newMax) {
ValueSpecification oldMax = max;
max = newMax;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
UMLPackage.TIME_INTERVAL__MAX, oldMax, max));
}
@Override
public void setMax(ValueSpecification newMax) {
if (newMax != null && !(newMax instanceof TimeExpression)) {
throw new IllegalArgumentException(newMax.toString());
}
setMaxGen(newMax);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isSetMax() {
return max != null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification getMin() {
if (min != null && min.eIsProxy()) {
InternalEObject oldMin = (InternalEObject) min;
min = (ValueSpecification) eResolveProxy(oldMin);
if (min != oldMin) {
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.RESOLVE,
UMLPackage.TIME_INTERVAL__MIN, oldMin, min));
}
}
return min;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public ValueSpecification basicGetMin() {
return min;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setMinGen(ValueSpecification newMin) {
ValueSpecification oldMin = min;
min = newMin;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
UMLPackage.TIME_INTERVAL__MIN, oldMin, min));
}
@Override
public void setMin(ValueSpecification newMin) {
if (newMin != null && !(newMin instanceof TimeExpression)) {
throw new IllegalArgumentException(newMin.toString());
}
setMinGen(newMin);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public boolean isSetMin() {
return min != null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case UMLPackage.TIME_INTERVAL__EANNOTATIONS :
return getEAnnotations();
case UMLPackage.TIME_INTERVAL__OWNED_ELEMENT :
return getOwnedElements();
case UMLPackage.TIME_INTERVAL__OWNER :
if (resolve)
return getOwner();
return basicGetOwner();
case UMLPackage.TIME_INTERVAL__OWNED_COMMENT :
return getOwnedComments();
case UMLPackage.TIME_INTERVAL__NAME :
return getName();
case UMLPackage.TIME_INTERVAL__VISIBILITY :
return getVisibility();
case UMLPackage.TIME_INTERVAL__QUALIFIED_NAME :
return getQualifiedName();
case UMLPackage.TIME_INTERVAL__CLIENT_DEPENDENCY :
return getClientDependencies();
case UMLPackage.TIME_INTERVAL__NAMESPACE :
if (resolve)
return getNamespace();
return basicGetNamespace();
case UMLPackage.TIME_INTERVAL__NAME_EXPRESSION :
if (resolve)
return getNameExpression();
return basicGetNameExpression();
case UMLPackage.TIME_INTERVAL__OWNING_TEMPLATE_PARAMETER :
if (resolve)
return getOwningTemplateParameter();
return basicGetOwningTemplateParameter();
case UMLPackage.TIME_INTERVAL__TEMPLATE_PARAMETER :
if (resolve)
return getTemplateParameter();
return basicGetTemplateParameter();
case UMLPackage.TIME_INTERVAL__TYPE :
if (resolve)
return getType();
return basicGetType();
case UMLPackage.TIME_INTERVAL__MIN :
if (resolve)
return getMin();
return basicGetMin();
case UMLPackage.TIME_INTERVAL__MAX :
if (resolve)
return getMax();
return basicGetMax();
}
return eDynamicGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case UMLPackage.TIME_INTERVAL__EANNOTATIONS :
return eAnnotations != null && !eAnnotations.isEmpty();
case UMLPackage.TIME_INTERVAL__OWNED_ELEMENT :
return isSetOwnedElements();
case UMLPackage.TIME_INTERVAL__OWNER :
return isSetOwner();
case UMLPackage.TIME_INTERVAL__OWNED_COMMENT :
return ownedComments != null && !ownedComments.isEmpty();
case UMLPackage.TIME_INTERVAL__NAME :
return isSetName();
case UMLPackage.TIME_INTERVAL__VISIBILITY :
return isSetVisibility();
case UMLPackage.TIME_INTERVAL__QUALIFIED_NAME :
return QUALIFIED_NAME_EDEFAULT == null
? getQualifiedName() != null
: !QUALIFIED_NAME_EDEFAULT.equals(getQualifiedName());
case UMLPackage.TIME_INTERVAL__CLIENT_DEPENDENCY :
return clientDependencies != null
&& !clientDependencies.isEmpty();
case UMLPackage.TIME_INTERVAL__NAMESPACE :
return isSetNamespace();
case UMLPackage.TIME_INTERVAL__NAME_EXPRESSION :
return nameExpression != null;
case UMLPackage.TIME_INTERVAL__OWNING_TEMPLATE_PARAMETER :
return basicGetOwningTemplateParameter() != null;
case UMLPackage.TIME_INTERVAL__TEMPLATE_PARAMETER :
return templateParameter != null;
case UMLPackage.TIME_INTERVAL__TYPE :
return type != null;
case UMLPackage.TIME_INTERVAL__MIN :
return isSetMin();
case UMLPackage.TIME_INTERVAL__MAX :
return isSetMax();
}
return eDynamicIsSet(featureID);
}
} //TimeIntervalImpl