index.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>AToMPM Documentation &mdash; AToMPM 0.6 documentation</title>
  7. <link rel="stylesheet" href="_static/classic.css" type="text/css" />
  8. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  9. <link rel="stylesheet" href="_static/mystyle.css" type="text/css" />
  10. <script type="text/javascript">
  11. var DOCUMENTATION_OPTIONS = {
  12. URL_ROOT: './',
  13. VERSION: '0.6',
  14. COLLAPSE_INDEX: false,
  15. FILE_SUFFIX: '.html',
  16. HAS_SOURCE: true
  17. };
  18. </script>
  19. <script type="text/javascript" src="_static/jquery.js"></script>
  20. <script type="text/javascript" src="_static/underscore.js"></script>
  21. <script type="text/javascript" src="_static/doctools.js"></script>
  22. <link rel="top" title="AToMPM 0.6 documentation" href="#" />
  23. <link rel="next" title="Installation" href="installation.html" />
  24. </head>
  25. <body role="document">
  26. <div class="related" role="navigation" aria-label="related navigation">
  27. <h3>Navigation</h3>
  28. <ul>
  29. <li class="right" style="margin-right: 10px">
  30. <a href="genindex.html" title="General Index"
  31. accesskey="I">index</a></li>
  32. <li class="right" >
  33. <a href="installation.html" title="Installation"
  34. accesskey="N">next</a> |</li>
  35. <li class="nav-item nav-item-0"><a href="#">AToMPM 0.6 documentation</a> &raquo;</li>
  36. </ul>
  37. </div>
  38. <div class="document">
  39. <div class="documentwrapper">
  40. <div class="bodywrapper">
  41. <div class="body" role="main">
  42. <div class="section" id="atompm-documentation">
  43. <h1>AToMPM Documentation<a class="headerlink" href="#atompm-documentation" title="Permalink to this headline">¶</a></h1>
  44. <p>This documentation serves to introduce AToMPM to the two main user groups: language developers and language users. AToMPM (&#8220;A Tool for Multi-Paradigm Modelling&#8221;) is a (meta)modelling workbench, which allows language developers to create visual domain-specific languages, and domain experts to use these languages. A language is defined by its <em>abstract syntax</em> in a metamodel, its <em>concrete syntax(es)</em>, which define(s) how each abstract syntax element is visualized, and its <em>semantics definition(s)</em>, either operational (a simulator) or translational (by mapping onto a known semantic domain). AToMPM supports model transformations to model semantics.</p>
  45. <div class="section" id="contents">
  46. <h2>Contents<a class="headerlink" href="#contents" title="Permalink to this headline">¶</a></h2>
  47. <table border="1" class="docutils">
  48. <colgroup>
  49. <col width="63%" />
  50. <col width="38%" />
  51. </colgroup>
  52. <tbody valign="top">
  53. <tr class="row-odd"><td><div class="toctree-wrapper first last compound">
  54. <ul>
  55. <li class="toctree-l1"><a class="reference internal" href="installation.html"> Installation</a><ul>
  56. <li class="toctree-l2"><a class="reference internal" href="installation.html#windows">Windows</a></li>
  57. <li class="toctree-l2"><a class="reference internal" href="installation.html#linux">Linux</a></li>
  58. <li class="toctree-l2"><a class="reference internal" href="installation.html#mac">Mac</a></li>
  59. </ul>
  60. </li>
  61. <li class="toctree-l1"><a class="reference internal" href="overview.html"> Overview</a><ul>
  62. <li class="toctree-l2"><a class="reference internal" href="overview.html#first-usage">First Usage</a></li>
  63. <li class="toctree-l2"><a class="reference internal" href="overview.html#the-atompm-user-interface">The AToMPM User Interface</a><ul>
  64. <li class="toctree-l3"><a class="reference internal" href="overview.html#toolbars">Toolbars</a></li>
  65. <li class="toctree-l3"><a class="reference internal" href="overview.html#canvas">Canvas</a></li>
  66. <li class="toctree-l3"><a class="reference internal" href="overview.html#console">Console</a></li>
  67. </ul>
  68. </li>
  69. </ul>
  70. </li>
  71. <li class="toctree-l1"><a class="reference internal" href="new_language.html"> Creating a Modelling Language</a><ul>
  72. <li class="toctree-l2"><a class="reference internal" href="new_language.html#initializing">Initializing</a></li>
  73. <li class="toctree-l2"><a class="reference internal" href="new_language.html#defining-abstract-syntax">Defining Abstract Syntax</a><ul>
  74. <li class="toctree-l3"><a class="reference internal" href="new_language.html#requirements">Requirements</a></li>
  75. <li class="toctree-l3"><a class="reference internal" href="new_language.html#classes">Classes</a></li>
  76. <li class="toctree-l3"><a class="reference internal" href="new_language.html#associations">Associations</a></li>
  77. <li class="toctree-l3"><a class="reference internal" href="new_language.html#cardinalities">Cardinalities</a></li>
  78. <li class="toctree-l3"><a class="reference internal" href="new_language.html#attributes">Attributes</a></li>
  79. <li class="toctree-l3"><a class="reference internal" href="new_language.html#inheritance">Inheritance</a></li>
  80. <li class="toctree-l3"><a class="reference internal" href="new_language.html#constraints">Constraints</a></li>
  81. <li class="toctree-l3"><a class="reference internal" href="new_language.html#actions">Actions</a></li>
  82. <li class="toctree-l3"><a class="reference internal" href="new_language.html#triggers">Triggers</a></li>
  83. <li class="toctree-l3"><a class="reference internal" href="new_language.html#action-library">Action Library</a></li>
  84. </ul>
  85. </li>
  86. <li class="toctree-l2"><a class="reference internal" href="new_language.html#defining-concrete-syntax">Defining Concrete Syntax</a><ul>
  87. <li class="toctree-l3"><a class="reference internal" href="new_language.html#mappers-and-parsers">Mappers and Parsers</a></li>
  88. </ul>
  89. </li>
  90. <li class="toctree-l2"><a class="reference internal" href="new_language.html#compiling">Compiling</a></li>
  91. </ul>
  92. </li>
  93. <li class="toctree-l1"><a class="reference internal" href="using_language.html"> Using a Modelling Language</a><ul>
  94. <li class="toctree-l2"><a class="reference internal" href="using_language.html#loading-a-formalism-toolbar">Loading a Formalism Toolbar</a></li>
  95. <li class="toctree-l2"><a class="reference internal" href="using_language.html#opening-a-model">Opening a Model</a></li>
  96. <li class="toctree-l2"><a class="reference internal" href="using_language.html#saving-a-model">Saving a Model</a></li>
  97. <li class="toctree-l2"><a class="reference internal" href="using_language.html#validating-a-model">Validating a Model</a></li>
  98. </ul>
  99. </li>
  100. <li class="toctree-l1"><a class="reference internal" href="modelling_transformation.html"> Modelling a Model Transformation</a><ul>
  101. <li class="toctree-l2"><a class="reference internal" href="modelling_transformation.html#compiling-a-language-to-a-pattern-language">Compiling a Language to a Pattern Language</a></li>
  102. <li class="toctree-l2"><a class="reference internal" href="modelling_transformation.html#initializing-schedules-rules">Initializing Schedules/Rules</a></li>
  103. <li class="toctree-l2"><a class="reference internal" href="modelling_transformation.html#the-rule-language">The Rule Language</a><ul>
  104. <li class="toctree-l3"><a class="reference internal" href="modelling_transformation.html#lhs-and-nac">LHS and NAC</a></li>
  105. <li class="toctree-l3"><a class="reference internal" href="modelling_transformation.html#rhs">RHS</a></li>
  106. </ul>
  107. </li>
  108. <li class="toctree-l2"><a class="reference internal" href="modelling_transformation.html#the-motif-scheduling-language">The MoTif Scheduling Language</a></li>
  109. <li class="toctree-l2"><a class="reference internal" href="modelling_transformation.html#action-library">Action Library</a></li>
  110. <li class="toctree-l2"><a class="reference internal" href="modelling_transformation.html#trafficlight-example">TrafficLight Example</a></li>
  111. </ul>
  112. </li>
  113. <li class="toctree-l1"><a class="reference internal" href="executing_transformation.html"> Executing a Model Transformation</a></li>
  114. <li class="toctree-l1"><a class="reference internal" href="troubleshooting.html"> Troubleshooting</a></li>
  115. <li class="toctree-l1"><a class="reference internal" href="workflows.html"> Workflows</a><ul>
  116. <li class="toctree-l2"><a class="reference internal" href="workflows.html#using-workflows">Using Workflows</a></li>
  117. <li class="toctree-l2"><a class="reference internal" href="workflows.html#opening-the-workflow">Opening the workflow</a></li>
  118. <li class="toctree-l2"><a class="reference internal" href="workflows.html#setting-the-run-time-parameters">Setting the run-time parameters</a></li>
  119. <li class="toctree-l2"><a class="reference internal" href="workflows.html#execute-the-workflow">Execute the workflow</a></li>
  120. <li class="toctree-l2"><a class="reference internal" href="workflows.html#dependency">Dependency</a></li>
  121. <li class="toctree-l2"><a class="reference internal" href="workflows.html#example-workflow-for-creating-a-dsl">Example Workflow for Creating a DSL</a></li>
  122. </ul>
  123. </li>
  124. </ul>
  125. </div>
  126. </td>
  127. <td><a class="first last reference internal image-reference" href="_images/instance_tilted_environment.png"><img alt="_images/instance_tilted_environment.png" src="_images/instance_tilted_environment.png" style="width: 687.6px; height: 1002.0px;" /></a>
  128. </td>
  129. </tr>
  130. </tbody>
  131. </table>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  138. <div class="sphinxsidebarwrapper">
  139. <h3><a href="#">Table Of Contents</a></h3>
  140. <ul>
  141. <li><a class="reference internal" href="#">AToMPM Documentation</a><ul>
  142. <li><a class="reference internal" href="#contents">Contents</a></li>
  143. </ul>
  144. </li>
  145. </ul>
  146. <h4>Next topic</h4>
  147. <p class="topless"><a href="installation.html"
  148. title="next chapter">Installation</a></p>
  149. <div role="note" aria-label="source link">
  150. <h3>This Page</h3>
  151. <ul class="this-page-menu">
  152. <li><a href="_sources/index.txt"
  153. rel="nofollow">Show Source</a></li>
  154. </ul>
  155. </div>
  156. <div id="searchbox" style="display: none" role="search">
  157. <h3>Quick search</h3>
  158. <form class="search" action="search.html" method="get">
  159. <div><input type="text" name="q" /></div>
  160. <div><input type="submit" value="Go" /></div>
  161. <input type="hidden" name="check_keywords" value="yes" />
  162. <input type="hidden" name="area" value="default" />
  163. </form>
  164. </div>
  165. <script type="text/javascript">$('#searchbox').show(0);</script>
  166. </div>
  167. </div>
  168. <div class="clearer"></div>
  169. </div>
  170. <div class="related" role="navigation" aria-label="related navigation">
  171. <h3>Navigation</h3>
  172. <ul>
  173. <li class="right" style="margin-right: 10px">
  174. <a href="genindex.html" title="General Index"
  175. >index</a></li>
  176. <li class="right" >
  177. <a href="installation.html" title="Installation"
  178. >next</a> |</li>
  179. <li class="nav-item nav-item-0"><a href="#">AToMPM 0.6 documentation</a> &raquo;</li>
  180. </ul>
  181. </div>
  182. <div class="footer" role="contentinfo">
  183. &copy; Copyright 2016, Eugene Syriani, Hans Vangheluwe, Raphael Mannadiar, Conner Hansen, Simon Van Mierlo, Huseyin Ergin, Jonathan Corley.
  184. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4.5.
  185. </div>
  186. </body>
  187. </html>