/******************************************************************************* * Copyright (c) 2006-2012 * Software Technology Group, Dresden University of Technology * DevBoost GmbH, Berlin, Amtsgericht Charlottenburg, HRB 140026 * * 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: * Software Technology Group - TU Dresden, Germany; * DevBoost GmbH - Berlin, Germany * - initial API and implementation ******************************************************************************/ /** * Copyright (c) 2006-2011 * Software Technology Group, Dresden University of Technology * * 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: * Software Technology Group - TU Dresden, Germany * - initial API and implementation */ package org.reuseware.sokan.ui.model.sokanui.impl; import java.util.Collection; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.util.EObjectResolvingEList; import org.eclipse.emf.ecore.util.EcoreUtil; import org.reuseware.sokan.ui.model.sokanui.Container; import org.reuseware.sokan.ui.model.sokanui.Root; import org.reuseware.sokan.ui.model.sokanui.SokanuiPackage; import org.reuseware.sokan.ui.model.sokanui.util.SokanuiUtil; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Container</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.reuseware.sokan.ui.model.sokanui.impl.ContainerImpl#getElements <em>Elements</em>}</li> * </ul> * </p> * * @generated */ public abstract class ContainerImpl extends IdentifiableElementImpl implements Container { /** * The cached value of the '{@link #getElements() <em>Elements</em>}' reference list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getElements() * @generated * @ordered */ protected EList<EObject> elements; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected ContainerImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SokanuiPackage.Literals.CONTAINER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated NOT */ public EList<EObject> getElements() { if (elements == null) { elements = new EObjectResolvingEList<EObject>(EObject.class, this, SokanuiPackage.CONTAINER__ELEMENTS); Root root = (Root) EcoreUtil.getRootContainer(this); SokanuiUtil.fillContainer(this, root.getResourceSet()); } return elements; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated NOT */ public boolean areElementsLoaded() { return elements != null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SokanuiPackage.CONTAINER__ELEMENTS: return getElements(); } 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 SokanuiPackage.CONTAINER__ELEMENTS: getElements().clear(); getElements().addAll((Collection<? extends EObject>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SokanuiPackage.CONTAINER__ELEMENTS: getElements().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SokanuiPackage.CONTAINER__ELEMENTS: return elements != null && !elements.isEmpty(); } return super.eIsSet(featureID); } } //ContainerImpl