blob: 9a1ec001bf792318451a140ff79d13fc58555723 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************
*/
package integration.xsd.impl;
import integration.xsd.Annotation;
import integration.xsd.XsdPackage;
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;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Annotation</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link integration.xsd.impl.AnnotationImpl#getDocumentation <em>Documentation</em>}</li>
* <li>{@link integration.xsd.impl.AnnotationImpl#getAppInfo <em>App Info</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class AnnotationImpl extends EObjectImpl implements Annotation {
/**
* The default value of the '{@link #getDocumentation() <em>Documentation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDocumentation()
* @generated
* @ordered
*/
protected static final String DOCUMENTATION_EDEFAULT = null;
/**
* The cached value of the '{@link #getDocumentation() <em>Documentation</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getDocumentation()
* @generated
* @ordered
*/
protected String documentation = DOCUMENTATION_EDEFAULT;
/**
* The default value of the '{@link #getAppInfo() <em>App Info</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getAppInfo()
* @generated
* @ordered
*/
protected static final String APP_INFO_EDEFAULT = null;
/**
* The cached value of the '{@link #getAppInfo() <em>App Info</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getAppInfo()
* @generated
* @ordered
*/
protected String appInfo = APP_INFO_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected AnnotationImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return XsdPackage.Literals.ANNOTATION;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getDocumentation() {
return documentation;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setDocumentation(String newDocumentation) {
String oldDocumentation = documentation;
documentation = newDocumentation;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, XsdPackage.ANNOTATION__DOCUMENTATION, oldDocumentation, documentation));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getAppInfo() {
return appInfo;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setAppInfo(String newAppInfo) {
String oldAppInfo = appInfo;
appInfo = newAppInfo;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, XsdPackage.ANNOTATION__APP_INFO, oldAppInfo, appInfo));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case XsdPackage.ANNOTATION__DOCUMENTATION:
return getDocumentation();
case XsdPackage.ANNOTATION__APP_INFO:
return getAppInfo();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case XsdPackage.ANNOTATION__DOCUMENTATION:
setDocumentation((String)newValue);
return;
case XsdPackage.ANNOTATION__APP_INFO:
setAppInfo((String)newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case XsdPackage.ANNOTATION__DOCUMENTATION:
setDocumentation(DOCUMENTATION_EDEFAULT);
return;
case XsdPackage.ANNOTATION__APP_INFO:
setAppInfo(APP_INFO_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case XsdPackage.ANNOTATION__DOCUMENTATION:
return DOCUMENTATION_EDEFAULT == null ? documentation != null : !DOCUMENTATION_EDEFAULT.equals(documentation);
case XsdPackage.ANNOTATION__APP_INFO:
return APP_INFO_EDEFAULT == null ? appInfo != null : !APP_INFO_EDEFAULT.equals(appInfo);
}
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(" (documentation: ");
result.append(documentation);
result.append(", appInfo: ");
result.append(appInfo);
result.append(')');
return result.toString();
}
} //AnnotationImpl