/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * 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. */ /** */ package org.jboss.drools.impl; 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.EObjectImpl; import org.jboss.drools.DroolsPackage; import org.jboss.drools.MetaDataType; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Meta Data Type</b></em>'. * <!-- end-user-doc --> * <p> * The following features are implemented: * <ul> * <li>{@link org.jboss.drools.impl.MetaDataTypeImpl#getMetaValue <em>Meta Value</em>}</li> * <li>{@link org.jboss.drools.impl.MetaDataTypeImpl#getName <em>Name</em>}</li> * </ul> * </p> * * @generated */ public class MetaDataTypeImpl extends EObjectImpl implements MetaDataType { /** * The default value of the '{@link #getMetaValue() <em>Meta Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getMetaValue() * @generated * @ordered */ protected static final String META_VALUE_EDEFAULT = null; /** * The cached value of the '{@link #getMetaValue() <em>Meta Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #getMetaValue() * @generated * @ordered */ protected String metaValue = META_VALUE_EDEFAULT; /** * 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; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected MetaDataTypeImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override protected EClass eStaticClass() { return DroolsPackage.Literals.META_DATA_TYPE; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getMetaValue() { return metaValue; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public void setMetaValue(String newMetaValue) { String oldMetaValue = metaValue; metaValue = newMetaValue; if (eNotificationRequired()) eNotify(new ENotificationImpl(this, Notification.SET, DroolsPackage.META_DATA_TYPE__META_VALUE, oldMetaValue, metaValue)); } /** * <!-- 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, DroolsPackage.META_DATA_TYPE__NAME, oldName, name)); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public Object eGet(int featureID, boolean resolve, boolean coreType) { switch (featureID) { case DroolsPackage.META_DATA_TYPE__META_VALUE: return getMetaValue(); case DroolsPackage.META_DATA_TYPE__NAME: return getName(); } return super.eGet(featureID, resolve, coreType); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eSet(int featureID, Object newValue) { switch (featureID) { case DroolsPackage.META_DATA_TYPE__META_VALUE: setMetaValue((String)newValue); return; case DroolsPackage.META_DATA_TYPE__NAME: setName((String)newValue); return; } super.eSet(featureID, newValue); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public void eUnset(int featureID) { switch (featureID) { case DroolsPackage.META_DATA_TYPE__META_VALUE: setMetaValue(META_VALUE_EDEFAULT); return; case DroolsPackage.META_DATA_TYPE__NAME: setName(NAME_EDEFAULT); return; } super.eUnset(featureID); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public boolean eIsSet(int featureID) { switch (featureID) { case DroolsPackage.META_DATA_TYPE__META_VALUE: return META_VALUE_EDEFAULT == null ? metaValue != null : !META_VALUE_EDEFAULT.equals(metaValue); case DroolsPackage.META_DATA_TYPE__NAME: return NAME_EDEFAULT == null ? name != null : !NAME_EDEFAULT.equals(name); } 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(" (metaValue: "); result.append(metaValue); result.append(", name: "); result.append(name); result.append(')'); return result.toString(); } } //MetaDataTypeImpl