/** * Copyright (c) 2008, 2015 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 Corporation - initial API and implementation */ package org.eclipse.e4.ui.model.application.commands.impl; import org.eclipse.e4.ui.model.application.commands.MCommandParameter; import org.eclipse.e4.ui.model.application.impl.ApplicationElementImpl; 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>Command Parameter</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * </p> * <ul> * <li>{@link org.eclipse.e4.ui.model.application.commands.impl.CommandParameterImpl#getName <em>Name</em>}</li> * <li>{@link org.eclipse.e4.ui.model.application.commands.impl.CommandParameterImpl#getTypeId <em>Type Id</em>}</li> * <li>{@link org.eclipse.e4.ui.model.application.commands.impl.CommandParameterImpl#isOptional <em>Optional</em>}</li> * </ul> * * @generated */ public class CommandParameterImpl extends ApplicationElementImpl implements MCommandParameter { /** * The default value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected static final String NAME_EDEFAULT = null; /** * The cached value of the '{@link #getName() <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getName() * @generated * @ordered */ protected String name = NAME_EDEFAULT; /** * The default value of the '{@link #getTypeId() <em>Type Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTypeId() * @generated * @ordered */ protected static final String TYPE_ID_EDEFAULT = null; /** * The cached value of the '{@link #getTypeId() <em>Type Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getTypeId() * @generated * @ordered */ protected String typeId = TYPE_ID_EDEFAULT; /** * The default value of the '{@link #isOptional() <em>Optional</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isOptional() * @generated * @ordered */ protected static final boolean OPTIONAL_EDEFAULT = true; /** * The cached value of the '{@link #isOptional() <em>Optional</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #isOptional() * @generated * @ordered */ protected boolean optional = OPTIONAL_EDEFAULT; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected CommandParameterImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return CommandsPackageImpl.Literals.COMMAND_PARAMETER; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setName(String newName) { String oldName = name; name = newName; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CommandsPackageImpl.COMMAND_PARAMETER__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getTypeId() { return typeId; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setTypeId(String newTypeId) { String oldTypeId = typeId; typeId = newTypeId; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CommandsPackageImpl.COMMAND_PARAMETER__TYPE_ID, oldTypeId, typeId)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public boolean isOptional() { return optional; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setOptional(boolean newOptional) { boolean oldOptional = optional; optional = newOptional; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CommandsPackageImpl.COMMAND_PARAMETER__OPTIONAL, oldOptional, optional)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case CommandsPackageImpl.COMMAND_PARAMETER__NAME: return getName(); case CommandsPackageImpl.COMMAND_PARAMETER__TYPE_ID: return getTypeId(); case CommandsPackageImpl.COMMAND_PARAMETER__OPTIONAL: return isOptional(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CommandsPackageImpl.COMMAND_PARAMETER__NAME: setName((String)newValue); return; case CommandsPackageImpl.COMMAND_PARAMETER__TYPE_ID: setTypeId((String)newValue); return; case CommandsPackageImpl.COMMAND_PARAMETER__OPTIONAL: setOptional((Boolean)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CommandsPackageImpl.COMMAND_PARAMETER__NAME: setName(NAME_EDEFAULT); return; case CommandsPackageImpl.COMMAND_PARAMETER__TYPE_ID: setTypeId(TYPE_ID_EDEFAULT); return; case CommandsPackageImpl.COMMAND_PARAMETER__OPTIONAL: setOptional(OPTIONAL_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CommandsPackageImpl.COMMAND_PARAMETER__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); case CommandsPackageImpl.COMMAND_PARAMETER__TYPE_ID: return TYPE_ID_EDEFAULT == null ? typeId != null : !TYPE_ID_EDEFAULT.equals(typeId); case CommandsPackageImpl.COMMAND_PARAMETER__OPTIONAL: return optional != OPTIONAL_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(" (name: "); //$NON-NLS-1$ result.append(name); result.append(", typeId: "); //$NON-NLS-1$ result.append(typeId); result.append(", optional: "); //$NON-NLS-1$ result.append(optional); result.append(')'); return result.toString(); } } //CommandParameterImpl