blob: 8f1a29377fbeb4971b1970e20aa8eaa609dc64b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 SAP AG 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:
* SAP AG - initial API and implementation
******************************************************************************
* $Id: ContainableImpl.java,v 1.2 2011/03/05 21:37:36 auhl Exp $
*/
package integration.xsd.impl;
import integration.xsd.Containable;
import integration.xsd.XsdPackage;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Containable</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link integration.xsd.impl.ContainableImpl#getMinOccurs <em>Min Occurs</em>}</li>
* <li>{@link integration.xsd.impl.ContainableImpl#getMaxOccurs <em>Max Occurs</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public abstract class ContainableImpl extends RootImpl implements Containable {
/**
* The default value of the '{@link #getMinOccurs() <em>Min Occurs</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getMinOccurs()
* @generated
* @ordered
*/
protected static final int MIN_OCCURS_EDEFAULT = 0;
/**
* The cached value of the '{@link #getMinOccurs() <em>Min Occurs</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getMinOccurs()
* @generated
* @ordered
*/
protected int minOccurs = MIN_OCCURS_EDEFAULT;
/**
* The default value of the '{@link #getMaxOccurs() <em>Max Occurs</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getMaxOccurs()
* @generated
* @ordered
*/
protected static final int MAX_OCCURS_EDEFAULT = 0;
/**
* The cached value of the '{@link #getMaxOccurs() <em>Max Occurs</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getMaxOccurs()
* @generated
* @ordered
*/
protected int maxOccurs = MAX_OCCURS_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected ContainableImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return XsdPackage.Literals.CONTAINABLE;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getMinOccurs() {
return minOccurs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setMinOccurs(int newMinOccurs) {
int oldMinOccurs = minOccurs;
minOccurs = newMinOccurs;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, XsdPackage.CONTAINABLE__MIN_OCCURS, oldMinOccurs, minOccurs));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getMaxOccurs() {
return maxOccurs;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setMaxOccurs(int newMaxOccurs) {
int oldMaxOccurs = maxOccurs;
maxOccurs = newMaxOccurs;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, XsdPackage.CONTAINABLE__MAX_OCCURS, oldMaxOccurs, maxOccurs));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case XsdPackage.CONTAINABLE__MIN_OCCURS:
return getMinOccurs();
case XsdPackage.CONTAINABLE__MAX_OCCURS:
return getMaxOccurs();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case XsdPackage.CONTAINABLE__MIN_OCCURS:
setMinOccurs((Integer)newValue);
return;
case XsdPackage.CONTAINABLE__MAX_OCCURS:
setMaxOccurs((Integer)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case XsdPackage.CONTAINABLE__MIN_OCCURS:
setMinOccurs(MIN_OCCURS_EDEFAULT);
return;
case XsdPackage.CONTAINABLE__MAX_OCCURS:
setMaxOccurs(MAX_OCCURS_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case XsdPackage.CONTAINABLE__MIN_OCCURS:
return minOccurs != MIN_OCCURS_EDEFAULT;
case XsdPackage.CONTAINABLE__MAX_OCCURS:
return maxOccurs != MAX_OCCURS_EDEFAULT;
}
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(" (minOccurs: ");
result.append(minOccurs);
result.append(", maxOccurs: ");
result.append(maxOccurs);
result.append(')');
return result.toString();
}
} //ContainableImpl