/******************************************************************************* * 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.impl.EObjectImpl; import org.eclipse.emf.ecore.util.EDataTypeEList; import org.reuseware.sokan.ui.model.sokanui.IdentifiableElement; import org.reuseware.sokan.ui.model.sokanui.SokanuiPackage; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Identifiable Element</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.reuseware.sokan.ui.model.sokanui.impl.IdentifiableElementImpl#getId <em>Id</em>}</li> * </ul> * </p> * * @generated */ public abstract class IdentifiableElementImpl extends EObjectImpl implements IdentifiableElement { /** * The cached value of the '{@link #getId() <em>Id</em>}' attribute list. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getId() * @generated * @ordered */ protected EList<String> id; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected IdentifiableElementImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return SokanuiPackage.Literals.IDENTIFIABLE_ELEMENT; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public EList<String> getId() { if (id == null) { id = new EDataTypeEList<String>(String.class, this, SokanuiPackage.IDENTIFIABLE_ELEMENT__ID); } return id; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case SokanuiPackage.IDENTIFIABLE_ELEMENT__ID: return getId(); } 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.IDENTIFIABLE_ELEMENT__ID: getId().clear(); getId().addAll((Collection<? extends String>)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case SokanuiPackage.IDENTIFIABLE_ELEMENT__ID: getId().clear(); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case SokanuiPackage.IDENTIFIABLE_ELEMENT__ID: return id != null && !id.isEmpty(); } 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(" (id: "); result.append(id); result.append(')'); return result.toString(); } } //IdentifiableElementImpl