All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.bpmn2.GlobalScriptTask Maven / Gradle / Ivy

There is a newer version: 7.54.0.Final
Show newest version
/**
 * 
 * 
 * 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 v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Reiner Hille-Doering (SAP AG) - initial API and implementation and/or initial documentation
 * 
 * 
 */
package org.eclipse.bpmn2;

/**
 * 
 * A representation of the model object 'Global Script Task'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.eclipse.bpmn2.GlobalScriptTask#getScript Script}
  • *
  • {@link org.eclipse.bpmn2.GlobalScriptTask#getScriptLanguage Script Language}
  • *
* * @see org.eclipse.bpmn2.Bpmn2Package#getGlobalScriptTask() * @model extendedMetaData="name='tGlobalScriptTask' kind='elementOnly'" * @generated */ public interface GlobalScriptTask extends GlobalTask { /** * Returns the value of the 'Script' attribute. * * * @return the value of the 'Script' attribute. * @see #setScript(String) * @see org.eclipse.bpmn2.Bpmn2Package#getGlobalScriptTask_Script() * @model required="true" ordered="false" * extendedMetaData="kind='element' name='script' namespace='http://www.omg.org/spec/BPMN/20100524/MODEL'" * @generated */ String getScript(); /** * Sets the value of the '{@link org.eclipse.bpmn2.GlobalScriptTask#getScript Script}' attribute. * * * @param value the new value of the 'Script' attribute. * @see #getScript() * @generated */ void setScript(String value); /** * Returns the value of the 'Script Language' attribute. * * * @return the value of the 'Script Language' attribute. * @see #setScriptLanguage(String) * @see org.eclipse.bpmn2.Bpmn2Package#getGlobalScriptTask_ScriptLanguage() * @model required="true" ordered="false" * extendedMetaData="kind='attribute' name='scriptLanguage'" * @generated */ String getScriptLanguage(); /** * Sets the value of the '{@link org.eclipse.bpmn2.GlobalScriptTask#getScriptLanguage Script Language}' attribute. * * * @param value the new value of the 'Script Language' attribute. * @see #getScriptLanguage() * @generated */ void setScriptLanguage(String value); } // GlobalScriptTask




© 2015 - 2025 Weber Informatics LLC | Privacy Policy