/*- * ============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.cdap.impl; import org.openecomp.ncomp.cdap.CdapDataset; import org.openecomp.ncomp.cdap.CdapDatasetSchema; import org.openecomp.ncomp.cdap.CdapKeyPair; import org.openecomp.ncomp.cdap.CdapPackage; import org.openecomp.ncomp.core.impl.NamedEntityImpl; import java.util.Collection; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.common.notify.NotificationChain; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.ecore.InternalEObject; import org.eclipse.emf.ecore.impl.ENotificationImpl; import org.eclipse.emf.ecore.util.EObjectContainmentEList; import org.eclipse.emf.ecore.util.InternalEList; /** * * An implementation of the model object 'Dataset'. * *

* The following features are implemented: *

* * * @generated */ public class CdapDatasetImpl extends NamedEntityImpl implements CdapDataset { /** * The default value of the '{@link #getType() Type}' attribute. * * * @see #getType() * @generated * @ordered */ protected static final String TYPE_EDEFAULT = null; /** * The cached value of the '{@link #getType() Type}' attribute. * * * @see #getType() * @generated * @ordered */ protected String type = TYPE_EDEFAULT; /** * The cached value of the '{@link #getProperties() Properties}' containment reference list. * * * @see #getProperties() * @generated * @ordered */ protected EList properties; /** * The cached value of the '{@link #getSchema() Schema}' containment reference. * * * @see #getSchema() * @generated * @ordered */ protected CdapDatasetSchema schema; /** * * * @generated */ protected CdapDatasetImpl() { super(); } /** * * * @generated */ @Override protected EClass eStaticClass() { return CdapPackage.Literals.CDAP_DATASET; } /** * * * @generated */ public String getType() { return type; } /** * * * @generated */ public void setType(String newType) { String oldType = type; type = newType; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CdapPackage.CDAP_DATASET__TYPE, oldType, type)); } /** * * * @generated */ public EList getProperties() { if (properties == null) { properties = new EObjectContainmentEList(CdapKeyPair.class, this, CdapPackage.CDAP_DATASET__PROPERTIES); } return properties; } /** * * * @generated */ public CdapDatasetSchema getSchema() { return schema; } /** * * * @generated */ public NotificationChain basicSetSchema(CdapDatasetSchema newSchema, NotificationChain msgs) { CdapDatasetSchema oldSchema = schema; schema = newSchema; if (eNotificationRequired()) { ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, CdapPackage.CDAP_DATASET__SCHEMA, oldSchema, newSchema); if (msgs == null) msgs = notification; else msgs.add(notification); } return msgs; } /** * * * @generated */ public void setSchema(CdapDatasetSchema newSchema) { if (newSchema != schema) { NotificationChain msgs = null; if (schema != null) msgs = ((InternalEObject)schema).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - CdapPackage.CDAP_DATASET__SCHEMA, null, msgs); if (newSchema != null) msgs = ((InternalEObject)newSchema).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - CdapPackage.CDAP_DATASET__SCHEMA, null, msgs); msgs = basicSetSchema(newSchema, msgs); if (msgs != null) msgs.dispatch(); } else if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, CdapPackage.CDAP_DATASET__SCHEMA, newSchema, newSchema)); } /** * * * @generated */ @Override public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) { switch (featureID) { case CdapPackage.CDAP_DATASET__PROPERTIES: return ((InternalEList)getProperties()).basicRemove(otherEnd, msgs); case CdapPackage.CDAP_DATASET__SCHEMA: return basicSetSchema(null, msgs); } return super.eInverseRemove(otherEnd, featureID, msgs); } /** * * * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case CdapPackage.CDAP_DATASET__TYPE: return getType(); case CdapPackage.CDAP_DATASET__PROPERTIES: return getProperties(); case CdapPackage.CDAP_DATASET__SCHEMA: return getSchema(); } return super.eGet(featureID, resolve, coreType); } /** * * * @generated */ @SuppressWarnings("unchecked") @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case CdapPackage.CDAP_DATASET__TYPE: setType((String)newValue); return; case CdapPackage.CDAP_DATASET__PROPERTIES: getProperties().clear(); getProperties().addAll((Collection)newValue); return; case CdapPackage.CDAP_DATASET__SCHEMA: setSchema((CdapDatasetSchema)newValue); return; } super.eSet(featureID, newValue); } /** * * * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case CdapPackage.CDAP_DATASET__TYPE: setType(TYPE_EDEFAULT); return; case CdapPackage.CDAP_DATASET__PROPERTIES: getProperties().clear(); return; case CdapPackage.CDAP_DATASET__SCHEMA: setSchema((CdapDatasetSchema)null); return; } super.eUnset(featureID); } /** * * * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case CdapPackage.CDAP_DATASET__TYPE: return TYPE_EDEFAULT == null ? type != null : !TYPE_EDEFAULT.equals(type); case CdapPackage.CDAP_DATASET__PROPERTIES: return properties != null && !properties.isEmpty(); case CdapPackage.CDAP_DATASET__SCHEMA: return schema != null; } return super.eIsSet(featureID); } /** * * * @generated */ @Override public String toString() { if (eIsProxy()) return super.toString(); StringBuffer result = new StringBuffer(super.toString()); result.append(" (type: "); result.append(type); result.append(')'); return result.toString(); } } //CdapDatasetImpl