| author | Sidharth Singh | 2012-08-03 01:39:44 (EDT) |
|---|---|---|
| committer | Manik Kishore | 2012-08-07 05:24:59 (EDT) |
| commit | daad722d3090fa23210095015a4487b791ca76f0 (patch) (side-by-side diff) | |
| tree | e6e87d90b74c1d2fa51f15b144d565e626ddb476 | |
| parent | e377941aa452b224b9d3b9ebf103160d881d5b5e (diff) | |
| download | org.eclipse.stardust.ide-daad722d3090fa23210095015a4487b791ca76f0.zip org.eclipse.stardust.ide-daad722d3090fa23210095015a4487b791ca76f0.tar.gz org.eclipse.stardust.ide-daad722d3090fa23210095015a4487b791ca76f0.tar.bz2 | |
Jira-ID: CRNT-25577
1)Added code to set TYPE_PROPERTY for all model elements in ModelElementMarshaller.
2)Added method toLaneType and toDataMappingConnectionType in ModelElementMarshaller
3)Made changes in processCommand in m_diagram.js to use type attribute for added[] objects
3)Changed the connection path attribute for dataFlow in m_connection.js
git-svn-id: http://emeafrazerg/svn/ipp/product/trunk/stardust/ide@58147 8100b5e0-4d52-466c-ae9c-bdeccbdeaf6b
| -rw-r--r-- | model/org.eclipse.stardust.model.xpdl.builder/src/main/java/org/eclipse/stardust/model/xpdl/builder/utils/ModelerConstants.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/model/org.eclipse.stardust.model.xpdl.builder/src/main/java/org/eclipse/stardust/model/xpdl/builder/utils/ModelerConstants.java b/model/org.eclipse.stardust.model.xpdl.builder/src/main/java/org/eclipse/stardust/model/xpdl/builder/utils/ModelerConstants.java index c2fdb4a..ef45c37 100644 --- a/model/org.eclipse.stardust.model.xpdl.builder/src/main/java/org/eclipse/stardust/model/xpdl/builder/utils/ModelerConstants.java +++ b/model/org.eclipse.stardust.model.xpdl.builder/src/main/java/org/eclipse/stardust/model/xpdl/builder/utils/ModelerConstants.java @@ -102,7 +102,6 @@ public class ModelerConstants public static final String STOP_EVENT = "stopEvent";
public static final String DATA = "data";
public static final String DATA_SYMBOLS = "dataSymbols";
- public static final String DATA_SYMBOL = "dataSymbol";
public static final String STRUCTURED_DATA_TYPE_FULL_ID = "structuredDataTypeFullId";
public static final String TYPE_DECLARATION_PROPERTY = "typeDeclaration";
public static final String CONNECTIONS_PROPERTY = "connections";
@@ -143,4 +142,11 @@ public class ModelerConstants * TODO - may need to be handled on the client side down the line.
* @deprecated */
public static final int START_END_SYMBOL_LEFT_OFFSET = 12;
+ // Added to set symbol type at Marshaller same as client side
+ public static final String SWIMLANE_SYMBOL = "swimlaneSymbol";
+ public static final String ACTIVITY_SYMBOL = "activitySymbol";
+ public static final String GATEWAY_SYMBOL = "gateSymbol";
+ public static final String EVENT_SYMBOL = "eventSymbol";
+ public static final String DATA_SYMBOL = "dataSymbol";
+
}
|

