blob: 4b4713c9ea2fabe0482c3e6802033fa14e1f3474 [file] [log] [blame]
/**
* Copyright (c) 2019 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
*/
package org.eclipse.papyrus.model2doc.core.builtintypes.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.MinimalEObjectImpl;
import org.eclipse.papyrus.model2doc.core.builtintypes.BuiltInTypesPackage;
import org.eclipse.papyrus.model2doc.core.builtintypes.CellLocation;
import org.eclipse.papyrus.model2doc.core.builtintypes.TextCell;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Text Cell</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.model2doc.core.builtintypes.impl.TextCellImpl#getLocation <em>Location</em>}</li>
* <li>{@link org.eclipse.papyrus.model2doc.core.builtintypes.impl.TextCellImpl#getText <em>Text</em>}</li>
* </ul>
*
* @generated
*/
public class TextCellImpl extends MinimalEObjectImpl.Container implements TextCell {
/**
* The default value of the '{@link #getLocation() <em>Location</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see #getLocation()
* @generated
* @ordered
*/
protected static final CellLocation LOCATION_EDEFAULT = CellLocation.BODY;
/**
* The cached value of the '{@link #getLocation() <em>Location</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see #getLocation()
* @generated
* @ordered
*/
protected CellLocation location = LOCATION_EDEFAULT;
/**
* The default value of the '{@link #getText() <em>Text</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see #getText()
* @generated
* @ordered
*/
protected static final String TEXT_EDEFAULT = ""; //$NON-NLS-1$
/**
* The cached value of the '{@link #getText() <em>Text</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @see #getText()
* @generated
* @ordered
*/
protected String text = TEXT_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected TextCellImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
protected EClass eStaticClass() {
return BuiltInTypesPackage.Literals.TEXT_CELL;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public CellLocation getLocation() {
return location;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setLocation(CellLocation newLocation) {
CellLocation oldLocation = location;
location = newLocation == null ? LOCATION_EDEFAULT : newLocation;
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, BuiltInTypesPackage.TEXT_CELL__LOCATION, oldLocation, location));
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public String getText() {
return text;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void setText(String newText) {
String oldText = text;
text = newText;
if (eNotificationRequired()) {
eNotify(new ENotificationImpl(this, Notification.SET, BuiltInTypesPackage.TEXT_CELL__TEXT, oldText, text));
}
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case BuiltInTypesPackage.TEXT_CELL__LOCATION:
return getLocation();
case BuiltInTypesPackage.TEXT_CELL__TEXT:
return getText();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case BuiltInTypesPackage.TEXT_CELL__LOCATION:
setLocation((CellLocation) newValue);
return;
case BuiltInTypesPackage.TEXT_CELL__TEXT:
setText((String) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case BuiltInTypesPackage.TEXT_CELL__LOCATION:
setLocation(LOCATION_EDEFAULT);
return;
case BuiltInTypesPackage.TEXT_CELL__TEXT:
setText(TEXT_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case BuiltInTypesPackage.TEXT_CELL__LOCATION:
return location != LOCATION_EDEFAULT;
case BuiltInTypesPackage.TEXT_CELL__TEXT:
return TEXT_EDEFAULT == null ? text != null : !TEXT_EDEFAULT.equals(text);
}
return super.eIsSet(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@Override
public String toString() {
if (eIsProxy()) {
return super.toString();
}
StringBuilder result = new StringBuilder(super.toString());
result.append(" (location: "); //$NON-NLS-1$
result.append(location);
result.append(", text: "); //$NON-NLS-1$
result.append(text);
result.append(')');
return result.toString();
}
} // TextCellImpl