/*- * ============LICENSE_START========================================== * OPENECOMP - DCAE * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END============================================ */ /** */ package org.openecomp.ncomp.core.function.impl; import org.openecomp.ncomp.core.function.FunctionPackage; import org.openecomp.ncomp.core.function.FunctionUpdateAttribute; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; /** * * An implementation of the model object 'Update Attribute'. * *

* The following features are implemented: *

* * * @generated */ public class FunctionUpdateAttributeImpl extends FunctionUpdateImpl implements FunctionUpdateAttribute { /** * The default value of the '{@link #getPath() Path}' attribute. * * * @see #getPath() * @generated * @ordered */ protected static final String PATH_EDEFAULT = null; /** * The cached value of the '{@link #getPath() Path}' attribute. * * * @see #getPath() * @generated * @ordered */ protected String path = PATH_EDEFAULT; /** * The default value of the '{@link #getValue() Value}' attribute. * * * @see #getValue() * @generated * @ordered */ protected static final String VALUE_EDEFAULT = null; /** * The cached value of the '{@link #getValue() Value}' attribute. * * * @see #getValue() * @generated * @ordered */ protected String value = VALUE_EDEFAULT; /** * * * @generated */ protected FunctionUpdateAttributeImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return FunctionPackage.Literals.FUNCTION_UPDATE_ATTRIBUTE; } /** * * * @generated */ public String getPath() { return path; } /** * * * @generated */ public void setPath(String newPath) { String oldPath = path; path = newPath; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__PATH, oldPath, path)); } /** * * * @generated */ public String getValue() { return value; } /** * * * @generated */ public void setValue(String newValue) { String oldValue = value; value = newValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__VALUE, oldValue, value)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__PATH: return getPath(); case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__VALUE: return getValue(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__PATH: setPath((String)newValue); return; case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__VALUE: setValue((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__PATH: setPath(PATH_EDEFAULT); return; case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__VALUE: setValue(VALUE_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__PATH: return PATH_EDEFAULT == null ? path != null : !PATH_EDEFAULT.equals(path); case FunctionPackage.FUNCTION_UPDATE_ATTRIBUTE__VALUE: return VALUE_EDEFAULT == null ? value != null : !VALUE_EDEFAULT.equals(value); } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (path: "); result.append(path); result.append(", value: "); result.append(value); result.append(')'); return result.toString(); } } //FunctionUpdateAttributeImpl