Browse Source

Documentation: issue #450 fixed

Restored tasks.textile from the 2.5.0 release and moved the respective chapter to documentation.textile. If the remaining tasks are still needed, we will have to find places for them in the new documentation structure.
Rainer Klute 9 years ago
parent
commit
0bfd54e205

+ 38 - 0
plugins/org.yakindu.sct.doc.user/src/documentation.textile

@@ -3589,6 +3589,44 @@ protected void tearDownStatemachine() {
 If the UI thread has been terminated by the user, the state machine will be shut down. It is necessary to explicitly end the timer service. Finally the runtime service is cancelled.
 
 
+h4(#simulating-operations-with-custom-java-code). Simulating operations with custom Java code
+
+To simulate a model with operations it is possible to use custom Java code that mocks the desired behavior or even to simulate against an existing Java backend. For this purpose it is required to provide one or more custom Java classes having a method with a matching signature. 
+
+!{width:80.0%;height:auto;}images/java_simulating_operation_010_statechart_with_operation.png(A statechart model with an operation)!
+
+p=. A statechart model with an operation
+
+To simulate the statechart above, a new Java class must be created matching the method signature defined in the statechart. This class must be placed onto the classpath of the
+statecharts project.
+
+YAKINDU Statechart Tools' default types are mapped to Java types as follows:
+
+table{border:1px solid black}.
+|*SCT Type* |  |*Java Type*  |
+|integer|→|long|
+|real|→|double|
+|boolean|→|boolean|
+|string|→|String|
+|void|→|void| 
+ 
+bc. 
+package example;
+public class Calculator {
+   public long add(long param1, long param2) {
+      return param1 + param2;
+   }
+}
+
+This custom class can be passed to Eclipse's run configuration as an _Operation Class_, see the figure below. It is possible to specify multiple Java classes, separated by comma.
+
+When the simulation is executed, the variable _result_ gets the value 2.
+
+!{width:80.0%;height:auto;}images/java_simulating_operation_020_run_configuration.png(Configuring an operations class)!
+
+p=. Configuring an operations class
+
+
 h2(#custom-code-generator). Custom code generator
 
 h3(#CreatingCustomCodeGenerators). Creating custom code generators

BIN
plugins/org.yakindu.sct.doc.user/src/images/genmodelwizardchooselanguage.jpg


BIN
plugins/org.yakindu.sct.doc.user/src/images/java_simulating_operation_010_statechart_with_operation.png


plugins/org.yakindu.sct.doc.user/src/images/runConfiguration.png → plugins/org.yakindu.sct.doc.user/src/images/java_simulating_operation_020_run_configuration.png


File diff suppressed because it is too large
+ 111 - 0
plugins/org.yakindu.sct.doc.user/src/tasks.textile