/** * Copyright (c) 2008 xored software, Inc. * * 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: * xored software, Inc. - initial API and Implementation (Alex Panchenko) * * * $Id: ContainerPatternImpl.java,v 1.1 2009/10/26 12:41:50 apanchenk Exp $ */ package org.eclipse.dltk.tcl.activestatedebugger.preferences.impl; import org.eclipse.dltk.tcl.activestatedebugger.preferences.ContainerPattern; import org.eclipse.dltk.tcl.activestatedebugger.preferences.ContainerType; import org.eclipse.dltk.tcl.activestatedebugger.preferences.PreferencesPackage; 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>Container Pattern</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.eclipse.dltk.tcl.activestatedebugger.preferences.impl.ContainerPatternImpl#getType <em>Type</em>}</li> * </ul> * </p> * * @generated */ public class ContainerPatternImpl extends PatternImpl implements ContainerPattern { /** * The default value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected static final ContainerType TYPE_EDEFAULT = ContainerType.LIBRARIES; /** * The cached value of the '{@link #getType() <em>Type</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getType() * @generated * @ordered */ protected ContainerType type = TYPE_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ContainerPatternImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return PreferencesPackage.Literals.CONTAINER_PATTERN; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public ContainerType getType() { return type; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setType(ContainerType newType) { ContainerType oldType = type; type = newType == null ? TYPE_EDEFAULT : newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, PreferencesPackage.CONTAINER_PATTERN__TYPE, oldType, type)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case PreferencesPackage.CONTAINER_PATTERN__TYPE: return getType(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case PreferencesPackage.CONTAINER_PATTERN__TYPE: setType((ContainerType)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case PreferencesPackage.CONTAINER_PATTERN__TYPE: setType(TYPE_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case PreferencesPackage.CONTAINER_PATTERN__TYPE: return type != TYPE_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(" (type: "); //$NON-NLS-1$ result.append(type); result.append(')'); return result.toString(); } } //ContainerPatternImpl