/*- * ============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.openstack.compute.impl; import org.openecomp.ncomp.openstack.compute.ComputePackage; import org.openecomp.ncomp.openstack.compute.Personality; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.impl.MinimalEObjectImpl; /** * * An implementation of the model object 'Personality'. * *

* The following features are implemented: *

* * * @generated */ public class PersonalityImpl extends MinimalEObjectImpl.Container implements Personality { /** * 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 #getContents() Contents}' attribute. * * * @see #getContents() * @generated * @ordered */ protected static final String CONTENTS_EDEFAULT = null; /** * The cached value of the '{@link #getContents() Contents}' attribute. * * * @see #getContents() * @generated * @ordered */ protected String contents = CONTENTS_EDEFAULT; /** * * * @generated */ protected PersonalityImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return ComputePackage.Literals.PERSONALITY; } /** * * * @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, ComputePackage.PERSONALITY__PATH, oldPath, path)); } /** * * * @generated */ public String getContents() { return contents; } /** * * * @generated */ public void setContents(String newContents) { String oldContents = contents; contents = newContents; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, ComputePackage.PERSONALITY__CONTENTS, oldContents, contents)); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case ComputePackage.PERSONALITY__PATH: return getPath(); case ComputePackage.PERSONALITY__CONTENTS: return getContents(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case ComputePackage.PERSONALITY__PATH: setPath((String)newValue); return; case ComputePackage.PERSONALITY__CONTENTS: setContents((String)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case ComputePackage.PERSONALITY__PATH: setPath(PATH_EDEFAULT); return; case ComputePackage.PERSONALITY__CONTENTS: setContents(CONTENTS_EDEFAULT); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case ComputePackage.PERSONALITY__PATH: return PATH_EDEFAULT == null ? path != null : !PATH_EDEFAULT.equals(path); case ComputePackage.PERSONALITY__CONTENTS: return CONTENTS_EDEFAULT == null ? contents != null : !CONTENTS_EDEFAULT.equals(contents); } 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(", contents: "); result.append(contents); result.append(')'); return result.toString(); } } //PersonalityImpl