overview.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version='1.0' encoding='utf-8' ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. <title>overview</title>
  6. <link type="text/css" rel="stylesheet" href="../style.css"/>
  7. </head>
  8. <body>
  9. <h1 id="Overview">Overview</h1>
  10. <h2 id="Howdoesitwork">How does it work?</h2>
  11. <p>The YAKINDU SCT 2 are integrated in Eclipse and use the textual modeling toolkit Xtext and the graphical modeling toolkit GMF. Behind the scenes of the statechart tools there are some meta models: </p>
  12. <ul>
  13. <li>
  14. <strong>SText</strong> the meta model for the state machines and their behavior
  15. </li>
  16. <li>
  17. <strong>SGraph</strong> the meta model for the graphical representation of the state machine models
  18. </li>
  19. <li>
  20. <strong>SExec</strong> an intermediate model for execution
  21. </li>
  22. <li>
  23. <strong>SGen</strong> an intermediate model used for generating
  24. </li>
  25. </ul>
  26. <p>The following graph shows these meta models, which are all defined as languages and their position in the SCT 2 work flow:</p>
  27. <p>
  28. <img border="0" src="images/overview_yakindu_modules_tech.jpg"/>
  29. </p>
  30. <p>The statechart editor uses
  31. <strong>SText</strong> and
  32. <strong>SGraph</strong>. The actual model of the state machine is defined in
  33. <strong>SText</strong>.
  34. <strong>SGraph</strong> only describes the graphical representation in the editor.
  35. <strong>SExec</strong> is an intermediate execution model. It is used behind the scenes as a foundation for the code generators and the simulation engine. This guarantees that the simulation behaves in the same way as the generated statechart implementations. It captures the execution behavior and may also serve as the basis of custom code generators.
  36. <strong>SGen</strong> is a generator model. All generators can be customized with such a generator model. In fact it is a textual model file where generator features, like i.e. the outlet path, can be specified.
  37. </p>
  38. <p>The YAKINDU SCT 2 can be installed in a full blown Eclipse-IDE specifically tailored for your language. It already provides great default functionality for all aspects and allows to configure the most common things very easily. </p>
  39. </body>
  40. </html>