blob: ea41565872d5d1c592ea2665ca577bd01eb8de48 [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2010 SAP AG.
* 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:
* Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation
*
* </copyright>
*/
package org.eclipse.bpmn2.impl;
import org.eclipse.bpmn2.Bpmn2Package;
import org.eclipse.bpmn2.GlobalScriptTask;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Global Script Task</b></em>'.
* <!-- end-user-doc -->
* <p>
* The following features are implemented:
* <ul>
* <li>{@link org.eclipse.bpmn2.impl.GlobalScriptTaskImpl#getScript <em>Script</em>}</li>
* <li>{@link org.eclipse.bpmn2.impl.GlobalScriptTaskImpl#getScriptLanguage <em>Script Language</em>}</li>
* </ul>
* </p>
*
* @generated
*/
public class GlobalScriptTaskImpl extends GlobalTaskImpl implements GlobalScriptTask {
/**
* The default value of the '{@link #getScript() <em>Script</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getScript()
* @generated
* @ordered
*/
protected static final String SCRIPT_EDEFAULT = null;
/**
* The cached value of the '{@link #getScript() <em>Script</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getScript()
* @generated
* @ordered
*/
protected String script = SCRIPT_EDEFAULT;
/**
* The default value of the '{@link #getScriptLanguage() <em>Script Language</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getScriptLanguage()
* @generated
* @ordered
*/
protected static final String SCRIPT_LANGUAGE_EDEFAULT = null;
/**
* The cached value of the '{@link #getScriptLanguage() <em>Script Language</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #getScriptLanguage()
* @generated
* @ordered
*/
protected String scriptLanguage = SCRIPT_LANGUAGE_EDEFAULT;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected GlobalScriptTaskImpl() {
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass() {
return Bpmn2Package.Literals.GLOBAL_SCRIPT_TASK;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getScript() {
return script;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setScript(String newScript) {
String oldScript = script;
script = newScript;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT, oldScript, script));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getScriptLanguage() {
return scriptLanguage;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setScriptLanguage(String newScriptLanguage) {
String oldScriptLanguage = scriptLanguage;
scriptLanguage = newScriptLanguage;
if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET,
Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT_LANGUAGE, oldScriptLanguage,
scriptLanguage));
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public Object eGet(int featureID, boolean resolve, boolean coreType) {
switch (featureID) {
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT:
return getScript();
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT_LANGUAGE:
return getScriptLanguage();
}
return super.eGet(featureID, resolve, coreType);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT:
setScript((String) newValue);
return;
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT_LANGUAGE:
setScriptLanguage((String) newValue);
return;
}
super.eSet(featureID, newValue);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT:
setScript(SCRIPT_EDEFAULT);
return;
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT_LANGUAGE:
setScriptLanguage(SCRIPT_LANGUAGE_EDEFAULT);
return;
}
super.eUnset(featureID);
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public boolean eIsSet(int featureID) {
switch (featureID) {
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT:
return SCRIPT_EDEFAULT == null ? script != null : !SCRIPT_EDEFAULT.equals(script);
case Bpmn2Package.GLOBAL_SCRIPT_TASK__SCRIPT_LANGUAGE:
return SCRIPT_LANGUAGE_EDEFAULT == null ? scriptLanguage != null
: !SCRIPT_LANGUAGE_EDEFAULT.equals(scriptLanguage);
}
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(" (script: ");
result.append(script);
result.append(", scriptLanguage: ");
result.append(scriptLanguage);
result.append(')');
return result.toString();
}
} //GlobalScriptTaskImpl