| author | Sidharth Singh | 2012-08-29 02:40:42 (EDT) |
|---|---|---|
| committer | Stephan Born | 2012-08-29 02:40:42 (EDT) |
| commit | 011035e6a1b1fd4b941ccf57bfb8d288c361307e (patch) (side-by-side diff) | |
| tree | fd8575b7eb54f12e78fbf19cd0910ca630b80153 | |
| parent | 409ab24c5a262fe35f1abf938bac4e0d7f4ad072 (diff) | |
| download | org.eclipse.stardust.ui.web-011035e6a1b1fd4b941ccf57bfb8d288c361307e.zip org.eclipse.stardust.ui.web-011035e6a1b1fd4b941ccf57bfb8d288c361307e.tar.gz org.eclipse.stardust.ui.web-011035e6a1b1fd4b941ccf57bfb8d288c361307e.tar.bz2 | |
CRNT-25974
1)Added code to set gatewayType to XOR while creation.
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ui.web@58749 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | web-modeler/src/main/resources/META-INF/xhtml/js/m_activity.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/web-modeler/src/main/resources/META-INF/xhtml/js/m_activity.js b/web-modeler/src/main/resources/META-INF/xhtml/js/m_activity.js index d124525..c3465ff 100644 --- a/web-modeler/src/main/resources/META-INF/xhtml/js/m_activity.js +++ b/web-modeler/src/main/resources/META-INF/xhtml/js/m_activity.js @@ -3,7 +3,7 @@ * 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: SunGard CSA LLC - initial API and implementation and/or initial
* documentation
******************************************************************************/
@@ -55,7 +55,7 @@ define( m_constants.GATEWAY_ACTIVITY_TYPE);
activity.type = m_constants.GATEWAY;
- activity.gatewayType = m_constants.AND_GATEWAY_TYPE;
+ activity.gatewayType = m_constants.XOR_GATEWAY_TYPE;
return activity;
},
@@ -64,7 +64,7 @@ define( };
/**
- *
+ *
*/
function Activity(id) {
m_utils.inheritMethods(Activity.prototype, m_modelElement
@@ -82,14 +82,14 @@ define( this.processingType = m_constants.SINGLE_PROCESSING_TYPE;
/**
- *
+ *
*/
Activity.prototype.toString = function() {
return "Lightdust.Activity";
};
/**
- *
+ *
*/
Activity.prototype.initialize = function(name, activityType) {
this.name = name;
|

