RaceTransMM.model 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "ClassIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 594,
  13. 199
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": ""
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": ""
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "5": {
  40. "width": {
  41. "type": "double",
  42. "value": 200
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": 125
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": 0
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "stroke-width": 2
  60. }
  61. },
  62. "mapper": {
  63. "type": "code",
  64. "value": ""
  65. },
  66. "parser": {
  67. "type": "code",
  68. "value": ""
  69. },
  70. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  71. "position": {
  72. "type": "list<double>",
  73. "value": [
  74. 0,
  75. 0
  76. ]
  77. },
  78. "orientation": {
  79. "type": "double",
  80. "value": 0
  81. },
  82. "scale": {
  83. "type": "list<double>",
  84. "value": [
  85. 1,
  86. 1
  87. ]
  88. }
  89. },
  90. "6": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "Step"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "fill": "#ffffff",
  100. "fill-opacity": 0.75,
  101. "font-size": "20px",
  102. "font-style": "italic"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({'name': getAttr('textContent')})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 23,
  118. 2
  119. ]
  120. },
  121. "orientation": {
  122. "type": "double",
  123. "value": 0
  124. },
  125. "scale": {
  126. "type": "list<double>",
  127. "value": [
  128. 1,
  129. 1
  130. ]
  131. }
  132. },
  133. "7": {
  134. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  135. "position": {
  136. "type": "list<double>",
  137. "value": [
  138. 13.896110991026944,
  139. 3.0451514439171206
  140. ]
  141. },
  142. "orientation": {
  143. "type": "double",
  144. "value": 0
  145. },
  146. "scale": {
  147. "type": "list<double>",
  148. "value": [
  149. 1,
  150. 1
  151. ]
  152. },
  153. "link-style": {
  154. "type": "map<string,string>",
  155. "value": {
  156. "stroke": "#00ffff",
  157. "stroke-dasharray": "",
  158. "stroke-opacity": 0.1,
  159. "arrow-start": "none",
  160. "arrow-end": "classic-wide-long"
  161. }
  162. }
  163. },
  164. "17": {
  165. "segments": {
  166. "type": "string",
  167. "value": "m0,0l200,0"
  168. },
  169. "style": {
  170. "type": "map<string,string>",
  171. "value": {
  172. "stroke": "#000000",
  173. "stroke-dasharray": "",
  174. "fill": "#ffffff",
  175. "fill-opacity": 0.75,
  176. "font-size": "20px",
  177. "stroke-width": 2,
  178. "arrow-start": "none",
  179. "arrow-end": "none"
  180. }
  181. },
  182. "mapper": {
  183. "type": "code",
  184. "value": ""
  185. },
  186. "parser": {
  187. "type": "code",
  188. "value": ""
  189. },
  190. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  191. "position": {
  192. "type": "list<double>",
  193. "value": [
  194. 1,
  195. 26
  196. ]
  197. },
  198. "orientation": {
  199. "type": "double",
  200. "value": 0
  201. },
  202. "scale": {
  203. "type": "list<double>",
  204. "value": [
  205. 1,
  206. 1
  207. ]
  208. }
  209. },
  210. "18": {
  211. "textContent": {
  212. "type": "string",
  213. "value": ""
  214. },
  215. "style": {
  216. "type": "map<string,string>",
  217. "value": {
  218. "stroke": "#000000",
  219. "stroke-dasharray": "",
  220. "fill": "#ffffff",
  221. "fill-opacity": 0.75,
  222. "font-size": "13px",
  223. "stroke-width": 1,
  224. "arrow-start": "none",
  225. "arrow-end": "none"
  226. }
  227. },
  228. "mapper": {
  229. "type": "code",
  230. "value": "var filenames = getAttr('attributes').map(\n function(attr)\n {\n return '+ '+attr['name'];\n });\n\n({'textContent': filenames.join('\\n')})"
  231. },
  232. "parser": {
  233. "type": "code",
  234. "value": ""
  235. },
  236. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  237. "position": {
  238. "type": "list<double>",
  239. "value": [
  240. 3,
  241. 25
  242. ]
  243. },
  244. "orientation": {
  245. "type": "double",
  246. "value": 0
  247. },
  248. "scale": {
  249. "type": "list<double>",
  250. "value": [
  251. 1,
  252. 1
  253. ]
  254. }
  255. },
  256. "19": {
  257. "width": {
  258. "type": "boolean",
  259. "value": true
  260. },
  261. "ratio": {
  262. "type": "double",
  263. "value": 1
  264. },
  265. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  266. "position": {
  267. "type": "list<double>",
  268. "value": [
  269. 168.09129891774523,
  270. 30.625911571363645
  271. ]
  272. },
  273. "orientation": {
  274. "type": "double",
  275. "value": 0
  276. },
  277. "scale": {
  278. "type": "list<double>",
  279. "value": [
  280. 1,
  281. 1
  282. ]
  283. },
  284. "link-style": {
  285. "type": "map<string,string>",
  286. "value": {
  287. "stroke": "#0000ff",
  288. "stroke-dasharray": "",
  289. "stroke-opacity": 1,
  290. "arrow-start": "none",
  291. "arrow-end": "classic-wide-long"
  292. }
  293. }
  294. },
  295. "20": {
  296. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  297. "position": {
  298. "type": "list<double>",
  299. "value": [
  300. 6.49899850809561,
  301. 18.998998508095553
  302. ]
  303. },
  304. "orientation": {
  305. "type": "double",
  306. "value": 0
  307. },
  308. "scale": {
  309. "type": "list<double>",
  310. "value": [
  311. 1,
  312. 1
  313. ]
  314. },
  315. "link-style": {
  316. "type": "map<string,string>",
  317. "value": {
  318. "stroke": "#00ffff",
  319. "stroke-dasharray": "",
  320. "stroke-opacity": 0.1,
  321. "arrow-start": "none",
  322. "arrow-end": "classic-wide-long"
  323. }
  324. }
  325. }
  326. },
  327. "edges": [
  328. {
  329. "src": "5",
  330. "dest": "7"
  331. },
  332. {
  333. "src": "7",
  334. "dest": "6"
  335. },
  336. {
  337. "src": "17",
  338. "dest": "19"
  339. },
  340. {
  341. "src": "19",
  342. "dest": "5"
  343. },
  344. {
  345. "src": "5",
  346. "dest": "20"
  347. },
  348. {
  349. "src": "20",
  350. "dest": "18"
  351. }
  352. ]
  353. }
  354. },
  355. "$asuri": {
  356. "type": "string",
  357. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/0.instance"
  358. },
  359. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon"
  360. },
  361. "1": {
  362. "link-style": {
  363. "type": "map<string,string>",
  364. "value": {
  365. "stroke": "#000000",
  366. "stroke-dasharray": "",
  367. "stroke-opacity": 1,
  368. "stroke-width": 2
  369. }
  370. },
  371. "arrowHead": {
  372. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  373. "value": "custom"
  374. },
  375. "arrowTail": {
  376. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  377. "value": "arrow-black"
  378. },
  379. "typename": {
  380. "type": "string",
  381. "value": "AssociationLink"
  382. },
  383. "position": {
  384. "type": "list<double>",
  385. "value": [
  386. 880.4094011849689,
  387. 140.33085396865093
  388. ]
  389. },
  390. "orientation": {
  391. "type": "double",
  392. "value": 0
  393. },
  394. "scale": {
  395. "type": "list<double>",
  396. "value": [
  397. 1,
  398. 1
  399. ]
  400. },
  401. "mapper": {
  402. "type": "code",
  403. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  404. },
  405. "parser": {
  406. "type": "code",
  407. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  408. },
  409. "$contents": {
  410. "type": "map<string,*>",
  411. "value": {
  412. "nodes": {
  413. "71": {
  414. "textContent": {
  415. "type": "string",
  416. "value": "next"
  417. },
  418. "style": {
  419. "type": "map<string,string>",
  420. "value": {
  421. "stroke": "#000000",
  422. "stroke-dasharray": "",
  423. "fill": "#ffffff",
  424. "fill-opacity": 0.75,
  425. "font-size": "20px",
  426. "stroke-width": 1,
  427. "arrow-start": "none",
  428. "arrow-end": "none"
  429. }
  430. },
  431. "mapper": {
  432. "type": "code",
  433. "value": "({'textContent':getAttr('name')})"
  434. },
  435. "parser": {
  436. "type": "code",
  437. "value": "({'name':getAttr('textContent')})"
  438. },
  439. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  440. "position": {
  441. "type": "list<double>",
  442. "value": [
  443. "0;-29.286802333511673,0%",
  444. "0;26.33408356200829,0%"
  445. ]
  446. },
  447. "orientation": {
  448. "type": "double",
  449. "value": "0;-87.66269414087618"
  450. },
  451. "scale": {
  452. "type": "list<double>",
  453. "value": [
  454. 1,
  455. 1
  456. ]
  457. },
  458. "$linkDecoratorInfo": {
  459. "type": "map<string,double>",
  460. "value": {
  461. "xratio": 0.3803680981595092,
  462. "yoffset": -28.5
  463. }
  464. }
  465. },
  466. "74": {
  467. "textContent": {
  468. "type": "string",
  469. "value": "*"
  470. },
  471. "style": {
  472. "type": "map<string,string>",
  473. "value": {
  474. "stroke": "#000000",
  475. "stroke-dasharray": "",
  476. "fill": "#ffffff",
  477. "fill-opacity": 0.75,
  478. "font-size": "20px",
  479. "stroke-width": 1,
  480. "arrow-start": "none",
  481. "arrow-end": "none"
  482. }
  483. },
  484. "mapper": {
  485. "type": "code",
  486. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n//TBC: write some code that uses getAttr('cardinalities') to determine the correct cardinality to display"
  487. },
  488. "parser": {
  489. "type": "code",
  490. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  491. },
  492. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  493. "position": {
  494. "type": "list<double>",
  495. "value": [
  496. "0;-82.91349710839597,1.5623093000543238%",
  497. "0;61.145304154112125,99.98779520346953%"
  498. ]
  499. },
  500. "orientation": {
  501. "type": "double",
  502. "value": "0;89.10482628978886"
  503. },
  504. "scale": {
  505. "type": "list<double>",
  506. "value": [
  507. 1,
  508. 1
  509. ]
  510. },
  511. "$linkDecoratorInfo": {
  512. "type": "map<string,double>",
  513. "value": {
  514. "xratio": 1.2085889570552146,
  515. "yoffset": -33.5
  516. }
  517. }
  518. },
  519. "77": {
  520. "textContent": {
  521. "type": "string",
  522. "value": "*"
  523. },
  524. "style": {
  525. "type": "map<string,string>",
  526. "value": {
  527. "stroke": "#000000",
  528. "stroke-dasharray": "",
  529. "fill": "#ffffff",
  530. "fill-opacity": 0.75,
  531. "font-size": "20px",
  532. "stroke-width": 1,
  533. "arrow-start": "none",
  534. "arrow-end": "none"
  535. }
  536. },
  537. "mapper": {
  538. "type": "code",
  539. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n//TBC: write some code that uses getAttr('cardinalities') to determine the correct cardinality to display"
  540. },
  541. "parser": {
  542. "type": "code",
  543. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  544. },
  545. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  546. "position": {
  547. "type": "list<double>",
  548. "value": [
  549. "0;-91.78578192169039,0%",
  550. "0;34.17126046313709,0%"
  551. ]
  552. },
  553. "orientation": {
  554. "type": "double",
  555. "value": "0;-0.6437457141753808"
  556. },
  557. "scale": {
  558. "type": "list<double>",
  559. "value": [
  560. 1,
  561. 1
  562. ]
  563. },
  564. "$linkDecoratorInfo": {
  565. "type": "map<string,double>",
  566. "value": {
  567. "xratio": -0.03680981595092025,
  568. "yoffset": -33.5
  569. }
  570. }
  571. },
  572. "140": {
  573. "segments": {
  574. "type": "string",
  575. "value": "m0,0 l20,8 l-20,8"
  576. },
  577. "style": {
  578. "type": "map<string,string>",
  579. "value": {
  580. "stroke": "#000000",
  581. "fill": "#000000",
  582. "fill-opacity": 0,
  583. "stroke-width": 1,
  584. "opacity": 1
  585. }
  586. },
  587. "mapper": {
  588. "type": "code",
  589. "value": ""
  590. },
  591. "parser": {
  592. "type": "code",
  593. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  594. },
  595. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  596. "position": {
  597. "type": "list<double>",
  598. "value": [
  599. "0;-108.41038488528068,1.5623093000543238%",
  600. "0;61.543693025626,99.98779520346953%"
  601. ]
  602. },
  603. "orientation": {
  604. "type": "double",
  605. "value": "0;89.10482628978886"
  606. },
  607. "scale": {
  608. "type": "list<double>",
  609. "value": [
  610. 1,
  611. 1
  612. ]
  613. },
  614. "$linkDecoratorInfo": {
  615. "type": "map<string,double>",
  616. "value": {
  617. "xratio": 1,
  618. "yoffset": -8
  619. }
  620. }
  621. }
  622. },
  623. "edges": []
  624. }
  625. },
  626. "$asuri": {
  627. "type": "string",
  628. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association/1.instance"
  629. },
  630. "$segments": {
  631. "type": "map<string,list<string>>",
  632. "value": {
  633. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/AssociationLink/1.instance": "M789,208L878,207L880,158L880,140",
  634. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/AssociationLink/1.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance": "M880,140L763,138L763.9999926834107,201.99953173828126"
  635. }
  636. },
  637. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/AssociationLink"
  638. },
  639. "2": {
  640. "typename": {
  641. "type": "string",
  642. "value": "ClassIcon"
  643. },
  644. "position": {
  645. "type": "list<double>",
  646. "value": [
  647. 197,
  648. 423
  649. ]
  650. },
  651. "orientation": {
  652. "type": "double",
  653. "value": 0
  654. },
  655. "scale": {
  656. "type": "list<double>",
  657. "value": [
  658. 1,
  659. 1
  660. ]
  661. },
  662. "mapper": {
  663. "type": "code",
  664. "value": ""
  665. },
  666. "parser": {
  667. "type": "code",
  668. "value": ""
  669. },
  670. "$contents": {
  671. "type": "map<string,*>",
  672. "value": {
  673. "nodes": {
  674. "5": {
  675. "width": {
  676. "type": "double",
  677. "value": 200
  678. },
  679. "height": {
  680. "type": "double",
  681. "value": 125
  682. },
  683. "cornerRadius": {
  684. "type": "double",
  685. "value": 0
  686. },
  687. "style": {
  688. "type": "map<string,string>",
  689. "value": {
  690. "stroke": "#000000",
  691. "stroke-dasharray": "",
  692. "fill": "#ffffff",
  693. "fill-opacity": 0.75,
  694. "stroke-width": 2
  695. }
  696. },
  697. "mapper": {
  698. "type": "code",
  699. "value": ""
  700. },
  701. "parser": {
  702. "type": "code",
  703. "value": ""
  704. },
  705. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  706. "position": {
  707. "type": "list<double>",
  708. "value": [
  709. 0,
  710. 0
  711. ]
  712. },
  713. "orientation": {
  714. "type": "double",
  715. "value": 0
  716. },
  717. "scale": {
  718. "type": "list<double>",
  719. "value": [
  720. 1,
  721. 1
  722. ]
  723. }
  724. },
  725. "6": {
  726. "textContent": {
  727. "type": "string",
  728. "value": "StartEngines"
  729. },
  730. "style": {
  731. "type": "map<string,string>",
  732. "value": {
  733. "stroke": "#000000",
  734. "fill": "#ffffff",
  735. "fill-opacity": 0.75,
  736. "font-size": "20px",
  737. "font-style": "normal"
  738. }
  739. },
  740. "mapper": {
  741. "type": "code",
  742. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  743. },
  744. "parser": {
  745. "type": "code",
  746. "value": "({'name': getAttr('textContent')})"
  747. },
  748. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  749. "position": {
  750. "type": "list<double>",
  751. "value": [
  752. 23,
  753. 2
  754. ]
  755. },
  756. "orientation": {
  757. "type": "double",
  758. "value": 0
  759. },
  760. "scale": {
  761. "type": "list<double>",
  762. "value": [
  763. 1,
  764. 1
  765. ]
  766. }
  767. },
  768. "7": {
  769. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  770. "position": {
  771. "type": "list<double>",
  772. "value": [
  773. 13.896110991026944,
  774. 3.0451514439171206
  775. ]
  776. },
  777. "orientation": {
  778. "type": "double",
  779. "value": 0
  780. },
  781. "scale": {
  782. "type": "list<double>",
  783. "value": [
  784. 1,
  785. 1
  786. ]
  787. },
  788. "link-style": {
  789. "type": "map<string,string>",
  790. "value": {
  791. "stroke": "#00ffff",
  792. "stroke-dasharray": "",
  793. "stroke-opacity": 0.1,
  794. "arrow-start": "none",
  795. "arrow-end": "classic-wide-long"
  796. }
  797. }
  798. },
  799. "17": {
  800. "segments": {
  801. "type": "string",
  802. "value": "m0,0l200,0"
  803. },
  804. "style": {
  805. "type": "map<string,string>",
  806. "value": {
  807. "stroke": "#000000",
  808. "stroke-dasharray": "",
  809. "fill": "#ffffff",
  810. "fill-opacity": 0.75,
  811. "font-size": "20px",
  812. "stroke-width": 2,
  813. "arrow-start": "none",
  814. "arrow-end": "none"
  815. }
  816. },
  817. "mapper": {
  818. "type": "code",
  819. "value": ""
  820. },
  821. "parser": {
  822. "type": "code",
  823. "value": ""
  824. },
  825. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  826. "position": {
  827. "type": "list<double>",
  828. "value": [
  829. 1,
  830. 26
  831. ]
  832. },
  833. "orientation": {
  834. "type": "double",
  835. "value": 0
  836. },
  837. "scale": {
  838. "type": "list<double>",
  839. "value": [
  840. 1,
  841. 1
  842. ]
  843. }
  844. },
  845. "18": {
  846. "textContent": {
  847. "type": "string",
  848. "value": ""
  849. },
  850. "style": {
  851. "type": "map<string,string>",
  852. "value": {
  853. "stroke": "#000000",
  854. "stroke-dasharray": "",
  855. "fill": "#ffffff",
  856. "fill-opacity": 0.75,
  857. "font-size": "13px",
  858. "stroke-width": 1,
  859. "arrow-start": "none",
  860. "arrow-end": "none"
  861. }
  862. },
  863. "mapper": {
  864. "type": "code",
  865. "value": "var filenames = getAttr('attributes').map(\n function(attr)\n {\n return '+ '+attr['name'];\n });\n\n({'textContent': filenames.join('\\n')})"
  866. },
  867. "parser": {
  868. "type": "code",
  869. "value": ""
  870. },
  871. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  872. "position": {
  873. "type": "list<double>",
  874. "value": [
  875. 3,
  876. 25
  877. ]
  878. },
  879. "orientation": {
  880. "type": "double",
  881. "value": 0
  882. },
  883. "scale": {
  884. "type": "list<double>",
  885. "value": [
  886. 1,
  887. 1
  888. ]
  889. }
  890. },
  891. "19": {
  892. "width": {
  893. "type": "boolean",
  894. "value": true
  895. },
  896. "ratio": {
  897. "type": "double",
  898. "value": 1
  899. },
  900. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  901. "position": {
  902. "type": "list<double>",
  903. "value": [
  904. 168.09129891774523,
  905. 30.625911571363645
  906. ]
  907. },
  908. "orientation": {
  909. "type": "double",
  910. "value": 0
  911. },
  912. "scale": {
  913. "type": "list<double>",
  914. "value": [
  915. 1,
  916. 1
  917. ]
  918. },
  919. "link-style": {
  920. "type": "map<string,string>",
  921. "value": {
  922. "stroke": "#0000ff",
  923. "stroke-dasharray": "",
  924. "stroke-opacity": 1,
  925. "arrow-start": "none",
  926. "arrow-end": "classic-wide-long"
  927. }
  928. }
  929. },
  930. "20": {
  931. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  932. "position": {
  933. "type": "list<double>",
  934. "value": [
  935. 6.49899850809561,
  936. 18.998998508095553
  937. ]
  938. },
  939. "orientation": {
  940. "type": "double",
  941. "value": 0
  942. },
  943. "scale": {
  944. "type": "list<double>",
  945. "value": [
  946. 1,
  947. 1
  948. ]
  949. },
  950. "link-style": {
  951. "type": "map<string,string>",
  952. "value": {
  953. "stroke": "#00ffff",
  954. "stroke-dasharray": "",
  955. "stroke-opacity": 0.1,
  956. "arrow-start": "none",
  957. "arrow-end": "classic-wide-long"
  958. }
  959. }
  960. }
  961. },
  962. "edges": [
  963. {
  964. "src": "5",
  965. "dest": "7"
  966. },
  967. {
  968. "src": "7",
  969. "dest": "6"
  970. },
  971. {
  972. "src": "17",
  973. "dest": "19"
  974. },
  975. {
  976. "src": "19",
  977. "dest": "5"
  978. },
  979. {
  980. "src": "5",
  981. "dest": "20"
  982. },
  983. {
  984. "src": "20",
  985. "dest": "18"
  986. }
  987. ]
  988. }
  989. },
  990. "$asuri": {
  991. "type": "string",
  992. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/2.instance"
  993. },
  994. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon"
  995. },
  996. "3": {
  997. "typename": {
  998. "type": "string",
  999. "value": "ClassIcon"
  1000. },
  1001. "position": {
  1002. "type": "list<double>",
  1003. "value": [
  1004. 483,
  1005. 423
  1006. ]
  1007. },
  1008. "orientation": {
  1009. "type": "double",
  1010. "value": 0
  1011. },
  1012. "scale": {
  1013. "type": "list<double>",
  1014. "value": [
  1015. 1,
  1016. 1
  1017. ]
  1018. },
  1019. "mapper": {
  1020. "type": "code",
  1021. "value": ""
  1022. },
  1023. "parser": {
  1024. "type": "code",
  1025. "value": ""
  1026. },
  1027. "$contents": {
  1028. "type": "map<string,*>",
  1029. "value": {
  1030. "nodes": {
  1031. "5": {
  1032. "width": {
  1033. "type": "double",
  1034. "value": 200
  1035. },
  1036. "height": {
  1037. "type": "double",
  1038. "value": 125
  1039. },
  1040. "cornerRadius": {
  1041. "type": "double",
  1042. "value": 0
  1043. },
  1044. "style": {
  1045. "type": "map<string,string>",
  1046. "value": {
  1047. "stroke": "#000000",
  1048. "stroke-dasharray": "",
  1049. "fill": "#ffffff",
  1050. "fill-opacity": 0.75,
  1051. "stroke-width": 2
  1052. }
  1053. },
  1054. "mapper": {
  1055. "type": "code",
  1056. "value": ""
  1057. },
  1058. "parser": {
  1059. "type": "code",
  1060. "value": ""
  1061. },
  1062. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1063. "position": {
  1064. "type": "list<double>",
  1065. "value": [
  1066. 0,
  1067. 0
  1068. ]
  1069. },
  1070. "orientation": {
  1071. "type": "double",
  1072. "value": 0
  1073. },
  1074. "scale": {
  1075. "type": "list<double>",
  1076. "value": [
  1077. 1,
  1078. 1
  1079. ]
  1080. }
  1081. },
  1082. "6": {
  1083. "textContent": {
  1084. "type": "string",
  1085. "value": "CarsGoToStart"
  1086. },
  1087. "style": {
  1088. "type": "map<string,string>",
  1089. "value": {
  1090. "stroke": "#000000",
  1091. "fill": "#ffffff",
  1092. "fill-opacity": 0.75,
  1093. "font-size": "20px",
  1094. "font-style": "normal"
  1095. }
  1096. },
  1097. "mapper": {
  1098. "type": "code",
  1099. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  1100. },
  1101. "parser": {
  1102. "type": "code",
  1103. "value": "({'name': getAttr('textContent')})"
  1104. },
  1105. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1106. "position": {
  1107. "type": "list<double>",
  1108. "value": [
  1109. 23,
  1110. 2
  1111. ]
  1112. },
  1113. "orientation": {
  1114. "type": "double",
  1115. "value": 0
  1116. },
  1117. "scale": {
  1118. "type": "list<double>",
  1119. "value": [
  1120. 1,
  1121. 1
  1122. ]
  1123. }
  1124. },
  1125. "7": {
  1126. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1127. "position": {
  1128. "type": "list<double>",
  1129. "value": [
  1130. 13.896110991026944,
  1131. 3.0451514439171206
  1132. ]
  1133. },
  1134. "orientation": {
  1135. "type": "double",
  1136. "value": 0
  1137. },
  1138. "scale": {
  1139. "type": "list<double>",
  1140. "value": [
  1141. 1,
  1142. 1
  1143. ]
  1144. },
  1145. "link-style": {
  1146. "type": "map<string,string>",
  1147. "value": {
  1148. "stroke": "#00ffff",
  1149. "stroke-dasharray": "",
  1150. "stroke-opacity": 0.1,
  1151. "arrow-start": "none",
  1152. "arrow-end": "classic-wide-long"
  1153. }
  1154. }
  1155. },
  1156. "17": {
  1157. "segments": {
  1158. "type": "string",
  1159. "value": "m0,0l200,0"
  1160. },
  1161. "style": {
  1162. "type": "map<string,string>",
  1163. "value": {
  1164. "stroke": "#000000",
  1165. "stroke-dasharray": "",
  1166. "fill": "#ffffff",
  1167. "fill-opacity": 0.75,
  1168. "font-size": "20px",
  1169. "stroke-width": 2,
  1170. "arrow-start": "none",
  1171. "arrow-end": "none"
  1172. }
  1173. },
  1174. "mapper": {
  1175. "type": "code",
  1176. "value": ""
  1177. },
  1178. "parser": {
  1179. "type": "code",
  1180. "value": ""
  1181. },
  1182. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1183. "position": {
  1184. "type": "list<double>",
  1185. "value": [
  1186. 1,
  1187. 26
  1188. ]
  1189. },
  1190. "orientation": {
  1191. "type": "double",
  1192. "value": 0
  1193. },
  1194. "scale": {
  1195. "type": "list<double>",
  1196. "value": [
  1197. 1,
  1198. 1
  1199. ]
  1200. }
  1201. },
  1202. "18": {
  1203. "textContent": {
  1204. "type": "string",
  1205. "value": ""
  1206. },
  1207. "style": {
  1208. "type": "map<string,string>",
  1209. "value": {
  1210. "stroke": "#000000",
  1211. "stroke-dasharray": "",
  1212. "fill": "#ffffff",
  1213. "fill-opacity": 0.75,
  1214. "font-size": "13px",
  1215. "stroke-width": 1,
  1216. "arrow-start": "none",
  1217. "arrow-end": "none"
  1218. }
  1219. },
  1220. "mapper": {
  1221. "type": "code",
  1222. "value": "var filenames = getAttr('attributes').map(\n function(attr)\n {\n return '+ '+attr['name'];\n });\n\n({'textContent': filenames.join('\\n')})"
  1223. },
  1224. "parser": {
  1225. "type": "code",
  1226. "value": ""
  1227. },
  1228. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1229. "position": {
  1230. "type": "list<double>",
  1231. "value": [
  1232. 3,
  1233. 25
  1234. ]
  1235. },
  1236. "orientation": {
  1237. "type": "double",
  1238. "value": 0
  1239. },
  1240. "scale": {
  1241. "type": "list<double>",
  1242. "value": [
  1243. 1,
  1244. 1
  1245. ]
  1246. }
  1247. },
  1248. "19": {
  1249. "width": {
  1250. "type": "boolean",
  1251. "value": true
  1252. },
  1253. "ratio": {
  1254. "type": "double",
  1255. "value": 1
  1256. },
  1257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  1258. "position": {
  1259. "type": "list<double>",
  1260. "value": [
  1261. 168.09129891774523,
  1262. 30.625911571363645
  1263. ]
  1264. },
  1265. "orientation": {
  1266. "type": "double",
  1267. "value": 0
  1268. },
  1269. "scale": {
  1270. "type": "list<double>",
  1271. "value": [
  1272. 1,
  1273. 1
  1274. ]
  1275. },
  1276. "link-style": {
  1277. "type": "map<string,string>",
  1278. "value": {
  1279. "stroke": "#0000ff",
  1280. "stroke-dasharray": "",
  1281. "stroke-opacity": 1,
  1282. "arrow-start": "none",
  1283. "arrow-end": "classic-wide-long"
  1284. }
  1285. }
  1286. },
  1287. "20": {
  1288. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1289. "position": {
  1290. "type": "list<double>",
  1291. "value": [
  1292. 6.49899850809561,
  1293. 18.998998508095553
  1294. ]
  1295. },
  1296. "orientation": {
  1297. "type": "double",
  1298. "value": 0
  1299. },
  1300. "scale": {
  1301. "type": "list<double>",
  1302. "value": [
  1303. 1,
  1304. 1
  1305. ]
  1306. },
  1307. "link-style": {
  1308. "type": "map<string,string>",
  1309. "value": {
  1310. "stroke": "#00ffff",
  1311. "stroke-dasharray": "",
  1312. "stroke-opacity": 0.1,
  1313. "arrow-start": "none",
  1314. "arrow-end": "classic-wide-long"
  1315. }
  1316. }
  1317. }
  1318. },
  1319. "edges": [
  1320. {
  1321. "src": "5",
  1322. "dest": "7"
  1323. },
  1324. {
  1325. "src": "7",
  1326. "dest": "6"
  1327. },
  1328. {
  1329. "src": "17",
  1330. "dest": "19"
  1331. },
  1332. {
  1333. "src": "19",
  1334. "dest": "5"
  1335. },
  1336. {
  1337. "src": "5",
  1338. "dest": "20"
  1339. },
  1340. {
  1341. "src": "20",
  1342. "dest": "18"
  1343. }
  1344. ]
  1345. }
  1346. },
  1347. "$asuri": {
  1348. "type": "string",
  1349. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/3.instance"
  1350. },
  1351. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon"
  1352. },
  1353. "4": {
  1354. "typename": {
  1355. "type": "string",
  1356. "value": "ClassIcon"
  1357. },
  1358. "position": {
  1359. "type": "list<double>",
  1360. "value": [
  1361. 935,
  1362. 202
  1363. ]
  1364. },
  1365. "orientation": {
  1366. "type": "double",
  1367. "value": 0
  1368. },
  1369. "scale": {
  1370. "type": "list<double>",
  1371. "value": [
  1372. 1,
  1373. 1
  1374. ]
  1375. },
  1376. "mapper": {
  1377. "type": "code",
  1378. "value": ""
  1379. },
  1380. "parser": {
  1381. "type": "code",
  1382. "value": ""
  1383. },
  1384. "$contents": {
  1385. "type": "map<string,*>",
  1386. "value": {
  1387. "nodes": {
  1388. "5": {
  1389. "width": {
  1390. "type": "double",
  1391. "value": 200
  1392. },
  1393. "height": {
  1394. "type": "double",
  1395. "value": 125
  1396. },
  1397. "cornerRadius": {
  1398. "type": "double",
  1399. "value": 0
  1400. },
  1401. "style": {
  1402. "type": "map<string,string>",
  1403. "value": {
  1404. "stroke": "#000000",
  1405. "stroke-dasharray": "",
  1406. "fill": "#ffffff",
  1407. "fill-opacity": 0.75,
  1408. "stroke-width": 2
  1409. }
  1410. },
  1411. "mapper": {
  1412. "type": "code",
  1413. "value": ""
  1414. },
  1415. "parser": {
  1416. "type": "code",
  1417. "value": ""
  1418. },
  1419. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1420. "position": {
  1421. "type": "list<double>",
  1422. "value": [
  1423. 0,
  1424. 0
  1425. ]
  1426. },
  1427. "orientation": {
  1428. "type": "double",
  1429. "value": 0
  1430. },
  1431. "scale": {
  1432. "type": "list<double>",
  1433. "value": [
  1434. 1,
  1435. 1
  1436. ]
  1437. }
  1438. },
  1439. "6": {
  1440. "textContent": {
  1441. "type": "string",
  1442. "value": "Positionable"
  1443. },
  1444. "style": {
  1445. "type": "map<string,string>",
  1446. "value": {
  1447. "stroke": "#000000",
  1448. "fill": "#ffffff",
  1449. "fill-opacity": 0.75,
  1450. "font-size": "20px",
  1451. "font-style": "italic"
  1452. }
  1453. },
  1454. "mapper": {
  1455. "type": "code",
  1456. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  1457. },
  1458. "parser": {
  1459. "type": "code",
  1460. "value": "({'name': getAttr('textContent')})"
  1461. },
  1462. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1463. "position": {
  1464. "type": "list<double>",
  1465. "value": [
  1466. 23,
  1467. 2
  1468. ]
  1469. },
  1470. "orientation": {
  1471. "type": "double",
  1472. "value": 0
  1473. },
  1474. "scale": {
  1475. "type": "list<double>",
  1476. "value": [
  1477. 1,
  1478. 1
  1479. ]
  1480. }
  1481. },
  1482. "7": {
  1483. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1484. "position": {
  1485. "type": "list<double>",
  1486. "value": [
  1487. 13.896110991026944,
  1488. 3.0451514439171206
  1489. ]
  1490. },
  1491. "orientation": {
  1492. "type": "double",
  1493. "value": 0
  1494. },
  1495. "scale": {
  1496. "type": "list<double>",
  1497. "value": [
  1498. 1,
  1499. 1
  1500. ]
  1501. },
  1502. "link-style": {
  1503. "type": "map<string,string>",
  1504. "value": {
  1505. "stroke": "#00ffff",
  1506. "stroke-dasharray": "",
  1507. "stroke-opacity": 0.1,
  1508. "arrow-start": "none",
  1509. "arrow-end": "classic-wide-long"
  1510. }
  1511. }
  1512. },
  1513. "17": {
  1514. "segments": {
  1515. "type": "string",
  1516. "value": "m0,0l200,0"
  1517. },
  1518. "style": {
  1519. "type": "map<string,string>",
  1520. "value": {
  1521. "stroke": "#000000",
  1522. "stroke-dasharray": "",
  1523. "fill": "#ffffff",
  1524. "fill-opacity": 0.75,
  1525. "font-size": "20px",
  1526. "stroke-width": 2,
  1527. "arrow-start": "none",
  1528. "arrow-end": "none"
  1529. }
  1530. },
  1531. "mapper": {
  1532. "type": "code",
  1533. "value": ""
  1534. },
  1535. "parser": {
  1536. "type": "code",
  1537. "value": ""
  1538. },
  1539. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1540. "position": {
  1541. "type": "list<double>",
  1542. "value": [
  1543. 1,
  1544. 26
  1545. ]
  1546. },
  1547. "orientation": {
  1548. "type": "double",
  1549. "value": 0
  1550. },
  1551. "scale": {
  1552. "type": "list<double>",
  1553. "value": [
  1554. 1,
  1555. 1
  1556. ]
  1557. }
  1558. },
  1559. "18": {
  1560. "textContent": {
  1561. "type": "string",
  1562. "value": "+ position"
  1563. },
  1564. "style": {
  1565. "type": "map<string,string>",
  1566. "value": {
  1567. "stroke": "#000000",
  1568. "stroke-dasharray": "",
  1569. "fill": "#ffffff",
  1570. "fill-opacity": 0.75,
  1571. "font-size": "13px",
  1572. "stroke-width": 1,
  1573. "arrow-start": "none",
  1574. "arrow-end": "none"
  1575. }
  1576. },
  1577. "mapper": {
  1578. "type": "code",
  1579. "value": "var filenames = getAttr('attributes').map(\n function(attr)\n {\n return '+ '+attr['name'];\n });\n\n({'textContent': filenames.join('\\n')})"
  1580. },
  1581. "parser": {
  1582. "type": "code",
  1583. "value": ""
  1584. },
  1585. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1586. "position": {
  1587. "type": "list<double>",
  1588. "value": [
  1589. 3,
  1590. 25
  1591. ]
  1592. },
  1593. "orientation": {
  1594. "type": "double",
  1595. "value": 0
  1596. },
  1597. "scale": {
  1598. "type": "list<double>",
  1599. "value": [
  1600. 1,
  1601. 1
  1602. ]
  1603. }
  1604. },
  1605. "19": {
  1606. "width": {
  1607. "type": "boolean",
  1608. "value": true
  1609. },
  1610. "ratio": {
  1611. "type": "double",
  1612. "value": 1
  1613. },
  1614. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  1615. "position": {
  1616. "type": "list<double>",
  1617. "value": [
  1618. 168.09129891774523,
  1619. 30.625911571363645
  1620. ]
  1621. },
  1622. "orientation": {
  1623. "type": "double",
  1624. "value": 0
  1625. },
  1626. "scale": {
  1627. "type": "list<double>",
  1628. "value": [
  1629. 1,
  1630. 1
  1631. ]
  1632. },
  1633. "link-style": {
  1634. "type": "map<string,string>",
  1635. "value": {
  1636. "stroke": "#0000ff",
  1637. "stroke-dasharray": "",
  1638. "stroke-opacity": 1,
  1639. "arrow-start": "none",
  1640. "arrow-end": "classic-wide-long"
  1641. }
  1642. }
  1643. },
  1644. "20": {
  1645. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1646. "position": {
  1647. "type": "list<double>",
  1648. "value": [
  1649. 6.49899850809561,
  1650. 18.998998508095553
  1651. ]
  1652. },
  1653. "orientation": {
  1654. "type": "double",
  1655. "value": 0
  1656. },
  1657. "scale": {
  1658. "type": "list<double>",
  1659. "value": [
  1660. 1,
  1661. 1
  1662. ]
  1663. },
  1664. "link-style": {
  1665. "type": "map<string,string>",
  1666. "value": {
  1667. "stroke": "#00ffff",
  1668. "stroke-dasharray": "",
  1669. "stroke-opacity": 0.1,
  1670. "arrow-start": "none",
  1671. "arrow-end": "classic-wide-long"
  1672. }
  1673. }
  1674. }
  1675. },
  1676. "edges": [
  1677. {
  1678. "src": "5",
  1679. "dest": "7"
  1680. },
  1681. {
  1682. "src": "7",
  1683. "dest": "6"
  1684. },
  1685. {
  1686. "src": "17",
  1687. "dest": "19"
  1688. },
  1689. {
  1690. "src": "19",
  1691. "dest": "5"
  1692. },
  1693. {
  1694. "src": "5",
  1695. "dest": "20"
  1696. },
  1697. {
  1698. "src": "20",
  1699. "dest": "18"
  1700. }
  1701. ]
  1702. }
  1703. },
  1704. "$asuri": {
  1705. "type": "string",
  1706. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/4.instance"
  1707. },
  1708. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon"
  1709. },
  1710. "5": {
  1711. "link-style": {
  1712. "type": "map<string,string>",
  1713. "value": {
  1714. "stroke": "#000000",
  1715. "stroke-dasharray": "",
  1716. "stroke-opacity": 1,
  1717. "stroke-width": 2
  1718. }
  1719. },
  1720. "arrowHead": {
  1721. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1722. "value": "custom"
  1723. },
  1724. "arrowTail": {
  1725. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  1726. "value": "arrow-black"
  1727. },
  1728. "typename": {
  1729. "type": "string",
  1730. "value": "InheritanceLink"
  1731. },
  1732. "position": {
  1733. "type": "list<double>",
  1734. "value": [
  1735. 863.6499999074459,
  1736. 253.00204081506732
  1737. ]
  1738. },
  1739. "orientation": {
  1740. "type": "double",
  1741. "value": 0
  1742. },
  1743. "scale": {
  1744. "type": "list<double>",
  1745. "value": [
  1746. 1,
  1747. 1
  1748. ]
  1749. },
  1750. "mapper": {
  1751. "type": "code",
  1752. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  1753. },
  1754. "parser": {
  1755. "type": "code",
  1756. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1757. },
  1758. "$contents": {
  1759. "type": "map<string,*>",
  1760. "value": {
  1761. "nodes": {
  1762. "164": {
  1763. "segments": {
  1764. "type": "string",
  1765. "value": "m0,0 l20,10 l-20,10 z"
  1766. },
  1767. "style": {
  1768. "type": "map<string,string>",
  1769. "value": {
  1770. "stroke": "#000000",
  1771. "fill": "#ffffff",
  1772. "opacity": 1,
  1773. "stroke-width": 1
  1774. }
  1775. },
  1776. "mapper": {
  1777. "type": "code",
  1778. "value": ""
  1779. },
  1780. "parser": {
  1781. "type": "code",
  1782. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  1783. },
  1784. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1785. "position": {
  1786. "type": "list<double>",
  1787. "value": [
  1788. "0;73.48522633758739,99.99074588189764%",
  1789. "0;-9.001126499666583,1.3604183113182926%"
  1790. ]
  1791. },
  1792. "orientation": {
  1793. "type": "double",
  1794. "value": "0;0.7794863211184553"
  1795. },
  1796. "scale": {
  1797. "type": "list<double>",
  1798. "value": [
  1799. 1,
  1800. 1
  1801. ]
  1802. },
  1803. "$linkDecoratorInfo": {
  1804. "type": "map<string,double>",
  1805. "value": {
  1806. "xratio": 1,
  1807. "yoffset": -10
  1808. }
  1809. }
  1810. }
  1811. },
  1812. "edges": []
  1813. }
  1814. },
  1815. "$asuri": {
  1816. "type": "string",
  1817. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/5.instance"
  1818. },
  1819. "$segments": {
  1820. "type": "map<string,list<string>>",
  1821. "value": {
  1822. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/5.instance": "M790,252L863.6499999074459,253.00204081506732",
  1823. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/5.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/4.instance": "M863.6495917449342,253.00203526183583L936.9991844139015,253.9999889035905"
  1824. }
  1825. },
  1826. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink"
  1827. },
  1828. "6": {
  1829. "typename": {
  1830. "type": "string",
  1831. "value": "ClassIcon"
  1832. },
  1833. "position": {
  1834. "type": "list<double>",
  1835. "value": [
  1836. 760,
  1837. 427
  1838. ]
  1839. },
  1840. "orientation": {
  1841. "type": "double",
  1842. "value": 0
  1843. },
  1844. "scale": {
  1845. "type": "list<double>",
  1846. "value": [
  1847. 1,
  1848. 1
  1849. ]
  1850. },
  1851. "mapper": {
  1852. "type": "code",
  1853. "value": ""
  1854. },
  1855. "parser": {
  1856. "type": "code",
  1857. "value": ""
  1858. },
  1859. "$contents": {
  1860. "type": "map<string,*>",
  1861. "value": {
  1862. "nodes": {
  1863. "5": {
  1864. "width": {
  1865. "type": "double",
  1866. "value": 200
  1867. },
  1868. "height": {
  1869. "type": "double",
  1870. "value": 125
  1871. },
  1872. "cornerRadius": {
  1873. "type": "double",
  1874. "value": 0
  1875. },
  1876. "style": {
  1877. "type": "map<string,string>",
  1878. "value": {
  1879. "stroke": "#000000",
  1880. "stroke-dasharray": "",
  1881. "fill": "#ffffff",
  1882. "fill-opacity": 0.75,
  1883. "stroke-width": 2
  1884. }
  1885. },
  1886. "mapper": {
  1887. "type": "code",
  1888. "value": ""
  1889. },
  1890. "parser": {
  1891. "type": "code",
  1892. "value": ""
  1893. },
  1894. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1895. "position": {
  1896. "type": "list<double>",
  1897. "value": [
  1898. 0,
  1899. 0
  1900. ]
  1901. },
  1902. "orientation": {
  1903. "type": "double",
  1904. "value": 0
  1905. },
  1906. "scale": {
  1907. "type": "list<double>",
  1908. "value": [
  1909. 1,
  1910. 1
  1911. ]
  1912. }
  1913. },
  1914. "6": {
  1915. "textContent": {
  1916. "type": "string",
  1917. "value": "StepOnGas"
  1918. },
  1919. "style": {
  1920. "type": "map<string,string>",
  1921. "value": {
  1922. "stroke": "#000000",
  1923. "fill": "#ffffff",
  1924. "fill-opacity": 0.75,
  1925. "font-size": "20px",
  1926. "font-style": "normal"
  1927. }
  1928. },
  1929. "mapper": {
  1930. "type": "code",
  1931. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  1932. },
  1933. "parser": {
  1934. "type": "code",
  1935. "value": "({'name': getAttr('textContent')})"
  1936. },
  1937. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1938. "position": {
  1939. "type": "list<double>",
  1940. "value": [
  1941. 23,
  1942. 2
  1943. ]
  1944. },
  1945. "orientation": {
  1946. "type": "double",
  1947. "value": 0
  1948. },
  1949. "scale": {
  1950. "type": "list<double>",
  1951. "value": [
  1952. 1,
  1953. 1
  1954. ]
  1955. }
  1956. },
  1957. "7": {
  1958. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1959. "position": {
  1960. "type": "list<double>",
  1961. "value": [
  1962. 13.896110991026944,
  1963. 3.0451514439171206
  1964. ]
  1965. },
  1966. "orientation": {
  1967. "type": "double",
  1968. "value": 0
  1969. },
  1970. "scale": {
  1971. "type": "list<double>",
  1972. "value": [
  1973. 1,
  1974. 1
  1975. ]
  1976. },
  1977. "link-style": {
  1978. "type": "map<string,string>",
  1979. "value": {
  1980. "stroke": "#00ffff",
  1981. "stroke-dasharray": "",
  1982. "stroke-opacity": 0.1,
  1983. "arrow-start": "none",
  1984. "arrow-end": "classic-wide-long"
  1985. }
  1986. }
  1987. },
  1988. "17": {
  1989. "segments": {
  1990. "type": "string",
  1991. "value": "m0,0l200,0"
  1992. },
  1993. "style": {
  1994. "type": "map<string,string>",
  1995. "value": {
  1996. "stroke": "#000000",
  1997. "stroke-dasharray": "",
  1998. "fill": "#ffffff",
  1999. "fill-opacity": 0.75,
  2000. "font-size": "20px",
  2001. "stroke-width": 2,
  2002. "arrow-start": "none",
  2003. "arrow-end": "none"
  2004. }
  2005. },
  2006. "mapper": {
  2007. "type": "code",
  2008. "value": ""
  2009. },
  2010. "parser": {
  2011. "type": "code",
  2012. "value": ""
  2013. },
  2014. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2015. "position": {
  2016. "type": "list<double>",
  2017. "value": [
  2018. 1,
  2019. 26
  2020. ]
  2021. },
  2022. "orientation": {
  2023. "type": "double",
  2024. "value": 0
  2025. },
  2026. "scale": {
  2027. "type": "list<double>",
  2028. "value": [
  2029. 1,
  2030. 1
  2031. ]
  2032. }
  2033. },
  2034. "18": {
  2035. "textContent": {
  2036. "type": "string",
  2037. "value": ""
  2038. },
  2039. "style": {
  2040. "type": "map<string,string>",
  2041. "value": {
  2042. "stroke": "#000000",
  2043. "stroke-dasharray": "",
  2044. "fill": "#ffffff",
  2045. "fill-opacity": 0.75,
  2046. "font-size": "13px",
  2047. "stroke-width": 1,
  2048. "arrow-start": "none",
  2049. "arrow-end": "none"
  2050. }
  2051. },
  2052. "mapper": {
  2053. "type": "code",
  2054. "value": "var filenames = getAttr('attributes').map(\n function(attr)\n {\n return '+ '+attr['name'];\n });\n\n({'textContent': filenames.join('\\n')})"
  2055. },
  2056. "parser": {
  2057. "type": "code",
  2058. "value": ""
  2059. },
  2060. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2061. "position": {
  2062. "type": "list<double>",
  2063. "value": [
  2064. 3,
  2065. 25
  2066. ]
  2067. },
  2068. "orientation": {
  2069. "type": "double",
  2070. "value": 0
  2071. },
  2072. "scale": {
  2073. "type": "list<double>",
  2074. "value": [
  2075. 1,
  2076. 1
  2077. ]
  2078. }
  2079. },
  2080. "19": {
  2081. "width": {
  2082. "type": "boolean",
  2083. "value": true
  2084. },
  2085. "ratio": {
  2086. "type": "double",
  2087. "value": 1
  2088. },
  2089. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  2090. "position": {
  2091. "type": "list<double>",
  2092. "value": [
  2093. 168.09129891774523,
  2094. 30.625911571363645
  2095. ]
  2096. },
  2097. "orientation": {
  2098. "type": "double",
  2099. "value": 0
  2100. },
  2101. "scale": {
  2102. "type": "list<double>",
  2103. "value": [
  2104. 1,
  2105. 1
  2106. ]
  2107. },
  2108. "link-style": {
  2109. "type": "map<string,string>",
  2110. "value": {
  2111. "stroke": "#0000ff",
  2112. "stroke-dasharray": "",
  2113. "stroke-opacity": 1,
  2114. "arrow-start": "none",
  2115. "arrow-end": "classic-wide-long"
  2116. }
  2117. }
  2118. },
  2119. "20": {
  2120. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2121. "position": {
  2122. "type": "list<double>",
  2123. "value": [
  2124. 6.49899850809561,
  2125. 18.998998508095553
  2126. ]
  2127. },
  2128. "orientation": {
  2129. "type": "double",
  2130. "value": 0
  2131. },
  2132. "scale": {
  2133. "type": "list<double>",
  2134. "value": [
  2135. 1,
  2136. 1
  2137. ]
  2138. },
  2139. "link-style": {
  2140. "type": "map<string,string>",
  2141. "value": {
  2142. "stroke": "#00ffff",
  2143. "stroke-dasharray": "",
  2144. "stroke-opacity": 0.1,
  2145. "arrow-start": "none",
  2146. "arrow-end": "classic-wide-long"
  2147. }
  2148. }
  2149. }
  2150. },
  2151. "edges": [
  2152. {
  2153. "src": "5",
  2154. "dest": "7"
  2155. },
  2156. {
  2157. "src": "7",
  2158. "dest": "6"
  2159. },
  2160. {
  2161. "src": "17",
  2162. "dest": "19"
  2163. },
  2164. {
  2165. "src": "19",
  2166. "dest": "5"
  2167. },
  2168. {
  2169. "src": "5",
  2170. "dest": "20"
  2171. },
  2172. {
  2173. "src": "20",
  2174. "dest": "18"
  2175. }
  2176. ]
  2177. }
  2178. },
  2179. "$asuri": {
  2180. "type": "string",
  2181. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/6.instance"
  2182. },
  2183. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon"
  2184. },
  2185. "7": {
  2186. "typename": {
  2187. "type": "string",
  2188. "value": "ClassIcon"
  2189. },
  2190. "position": {
  2191. "type": "list<double>",
  2192. "value": [
  2193. 1055,
  2194. 429
  2195. ]
  2196. },
  2197. "orientation": {
  2198. "type": "double",
  2199. "value": 0
  2200. },
  2201. "scale": {
  2202. "type": "list<double>",
  2203. "value": [
  2204. 1,
  2205. 1
  2206. ]
  2207. },
  2208. "mapper": {
  2209. "type": "code",
  2210. "value": ""
  2211. },
  2212. "parser": {
  2213. "type": "code",
  2214. "value": ""
  2215. },
  2216. "$contents": {
  2217. "type": "map<string,*>",
  2218. "value": {
  2219. "nodes": {
  2220. "5": {
  2221. "width": {
  2222. "type": "double",
  2223. "value": 200
  2224. },
  2225. "height": {
  2226. "type": "double",
  2227. "value": 125
  2228. },
  2229. "cornerRadius": {
  2230. "type": "double",
  2231. "value": 0
  2232. },
  2233. "style": {
  2234. "type": "map<string,string>",
  2235. "value": {
  2236. "stroke": "#000000",
  2237. "stroke-dasharray": "",
  2238. "fill": "#ffffff",
  2239. "fill-opacity": 0.75,
  2240. "stroke-width": 2
  2241. }
  2242. },
  2243. "mapper": {
  2244. "type": "code",
  2245. "value": ""
  2246. },
  2247. "parser": {
  2248. "type": "code",
  2249. "value": ""
  2250. },
  2251. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2252. "position": {
  2253. "type": "list<double>",
  2254. "value": [
  2255. 0,
  2256. 0
  2257. ]
  2258. },
  2259. "orientation": {
  2260. "type": "double",
  2261. "value": 0
  2262. },
  2263. "scale": {
  2264. "type": "list<double>",
  2265. "value": [
  2266. 1,
  2267. 1
  2268. ]
  2269. }
  2270. },
  2271. "6": {
  2272. "textContent": {
  2273. "type": "string",
  2274. "value": "IsRaceFinished"
  2275. },
  2276. "style": {
  2277. "type": "map<string,string>",
  2278. "value": {
  2279. "stroke": "#000000",
  2280. "fill": "#ffffff",
  2281. "fill-opacity": 0.75,
  2282. "font-size": "20px",
  2283. "font-style": "normal"
  2284. }
  2285. },
  2286. "mapper": {
  2287. "type": "code",
  2288. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  2289. },
  2290. "parser": {
  2291. "type": "code",
  2292. "value": "({'name': getAttr('textContent')})"
  2293. },
  2294. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2295. "position": {
  2296. "type": "list<double>",
  2297. "value": [
  2298. 23,
  2299. 2
  2300. ]
  2301. },
  2302. "orientation": {
  2303. "type": "double",
  2304. "value": 0
  2305. },
  2306. "scale": {
  2307. "type": "list<double>",
  2308. "value": [
  2309. 1,
  2310. 1
  2311. ]
  2312. }
  2313. },
  2314. "7": {
  2315. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2316. "position": {
  2317. "type": "list<double>",
  2318. "value": [
  2319. 13.896110991026944,
  2320. 3.0451514439171206
  2321. ]
  2322. },
  2323. "orientation": {
  2324. "type": "double",
  2325. "value": 0
  2326. },
  2327. "scale": {
  2328. "type": "list<double>",
  2329. "value": [
  2330. 1,
  2331. 1
  2332. ]
  2333. },
  2334. "link-style": {
  2335. "type": "map<string,string>",
  2336. "value": {
  2337. "stroke": "#00ffff",
  2338. "stroke-dasharray": "",
  2339. "stroke-opacity": 0.1,
  2340. "arrow-start": "none",
  2341. "arrow-end": "classic-wide-long"
  2342. }
  2343. }
  2344. },
  2345. "17": {
  2346. "segments": {
  2347. "type": "string",
  2348. "value": "m0,0l200,0"
  2349. },
  2350. "style": {
  2351. "type": "map<string,string>",
  2352. "value": {
  2353. "stroke": "#000000",
  2354. "stroke-dasharray": "",
  2355. "fill": "#ffffff",
  2356. "fill-opacity": 0.75,
  2357. "font-size": "20px",
  2358. "stroke-width": 2,
  2359. "arrow-start": "none",
  2360. "arrow-end": "none"
  2361. }
  2362. },
  2363. "mapper": {
  2364. "type": "code",
  2365. "value": ""
  2366. },
  2367. "parser": {
  2368. "type": "code",
  2369. "value": ""
  2370. },
  2371. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2372. "position": {
  2373. "type": "list<double>",
  2374. "value": [
  2375. 1,
  2376. 26
  2377. ]
  2378. },
  2379. "orientation": {
  2380. "type": "double",
  2381. "value": 0
  2382. },
  2383. "scale": {
  2384. "type": "list<double>",
  2385. "value": [
  2386. 1,
  2387. 1
  2388. ]
  2389. }
  2390. },
  2391. "18": {
  2392. "textContent": {
  2393. "type": "string",
  2394. "value": ""
  2395. },
  2396. "style": {
  2397. "type": "map<string,string>",
  2398. "value": {
  2399. "stroke": "#000000",
  2400. "stroke-dasharray": "",
  2401. "fill": "#ffffff",
  2402. "fill-opacity": 0.75,
  2403. "font-size": "13px",
  2404. "stroke-width": 1,
  2405. "arrow-start": "none",
  2406. "arrow-end": "none"
  2407. }
  2408. },
  2409. "mapper": {
  2410. "type": "code",
  2411. "value": "var filenames = getAttr('attributes').map(\n function(attr)\n {\n return '+ '+attr['name'];\n });\n\n({'textContent': filenames.join('\\n')})"
  2412. },
  2413. "parser": {
  2414. "type": "code",
  2415. "value": ""
  2416. },
  2417. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2418. "position": {
  2419. "type": "list<double>",
  2420. "value": [
  2421. 3,
  2422. 25
  2423. ]
  2424. },
  2425. "orientation": {
  2426. "type": "double",
  2427. "value": 0
  2428. },
  2429. "scale": {
  2430. "type": "list<double>",
  2431. "value": [
  2432. 1,
  2433. 1
  2434. ]
  2435. }
  2436. },
  2437. "19": {
  2438. "width": {
  2439. "type": "boolean",
  2440. "value": true
  2441. },
  2442. "ratio": {
  2443. "type": "double",
  2444. "value": 1
  2445. },
  2446. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  2447. "position": {
  2448. "type": "list<double>",
  2449. "value": [
  2450. 168.09129891774523,
  2451. 30.625911571363645
  2452. ]
  2453. },
  2454. "orientation": {
  2455. "type": "double",
  2456. "value": 0
  2457. },
  2458. "scale": {
  2459. "type": "list<double>",
  2460. "value": [
  2461. 1,
  2462. 1
  2463. ]
  2464. },
  2465. "link-style": {
  2466. "type": "map<string,string>",
  2467. "value": {
  2468. "stroke": "#0000ff",
  2469. "stroke-dasharray": "",
  2470. "stroke-opacity": 1,
  2471. "arrow-start": "none",
  2472. "arrow-end": "classic-wide-long"
  2473. }
  2474. }
  2475. },
  2476. "20": {
  2477. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2478. "position": {
  2479. "type": "list<double>",
  2480. "value": [
  2481. 6.49899850809561,
  2482. 18.998998508095553
  2483. ]
  2484. },
  2485. "orientation": {
  2486. "type": "double",
  2487. "value": 0
  2488. },
  2489. "scale": {
  2490. "type": "list<double>",
  2491. "value": [
  2492. 1,
  2493. 1
  2494. ]
  2495. },
  2496. "link-style": {
  2497. "type": "map<string,string>",
  2498. "value": {
  2499. "stroke": "#00ffff",
  2500. "stroke-dasharray": "",
  2501. "stroke-opacity": 0.1,
  2502. "arrow-start": "none",
  2503. "arrow-end": "classic-wide-long"
  2504. }
  2505. }
  2506. }
  2507. },
  2508. "edges": [
  2509. {
  2510. "src": "5",
  2511. "dest": "7"
  2512. },
  2513. {
  2514. "src": "7",
  2515. "dest": "6"
  2516. },
  2517. {
  2518. "src": "17",
  2519. "dest": "19"
  2520. },
  2521. {
  2522. "src": "19",
  2523. "dest": "5"
  2524. },
  2525. {
  2526. "src": "5",
  2527. "dest": "20"
  2528. },
  2529. {
  2530. "src": "20",
  2531. "dest": "18"
  2532. }
  2533. ]
  2534. }
  2535. },
  2536. "$asuri": {
  2537. "type": "string",
  2538. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/7.instance"
  2539. },
  2540. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon"
  2541. },
  2542. "8": {
  2543. "typename": {
  2544. "type": "string",
  2545. "value": "ClassIcon"
  2546. },
  2547. "position": {
  2548. "type": "list<double>",
  2549. "value": [
  2550. 1273,
  2551. 425
  2552. ]
  2553. },
  2554. "orientation": {
  2555. "type": "double",
  2556. "value": 0
  2557. },
  2558. "scale": {
  2559. "type": "list<double>",
  2560. "value": [
  2561. 1,
  2562. 1
  2563. ]
  2564. },
  2565. "mapper": {
  2566. "type": "code",
  2567. "value": ""
  2568. },
  2569. "parser": {
  2570. "type": "code",
  2571. "value": ""
  2572. },
  2573. "$contents": {
  2574. "type": "map<string,*>",
  2575. "value": {
  2576. "nodes": {
  2577. "5": {
  2578. "width": {
  2579. "type": "double",
  2580. "value": 200
  2581. },
  2582. "height": {
  2583. "type": "double",
  2584. "value": 125
  2585. },
  2586. "cornerRadius": {
  2587. "type": "double",
  2588. "value": 0
  2589. },
  2590. "style": {
  2591. "type": "map<string,string>",
  2592. "value": {
  2593. "stroke": "#000000",
  2594. "stroke-dasharray": "",
  2595. "fill": "#ffffff",
  2596. "fill-opacity": 0.75,
  2597. "stroke-width": 2
  2598. }
  2599. },
  2600. "mapper": {
  2601. "type": "code",
  2602. "value": ""
  2603. },
  2604. "parser": {
  2605. "type": "code",
  2606. "value": ""
  2607. },
  2608. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2609. "position": {
  2610. "type": "list<double>",
  2611. "value": [
  2612. 0,
  2613. 0
  2614. ]
  2615. },
  2616. "orientation": {
  2617. "type": "double",
  2618. "value": 0
  2619. },
  2620. "scale": {
  2621. "type": "list<double>",
  2622. "value": [
  2623. 1,
  2624. 1
  2625. ]
  2626. }
  2627. },
  2628. "6": {
  2629. "textContent": {
  2630. "type": "string",
  2631. "value": "AwardCeremony"
  2632. },
  2633. "style": {
  2634. "type": "map<string,string>",
  2635. "value": {
  2636. "stroke": "#000000",
  2637. "fill": "#ffffff",
  2638. "fill-opacity": 0.75,
  2639. "font-size": "20px",
  2640. "font-style": "normal"
  2641. }
  2642. },
  2643. "mapper": {
  2644. "type": "code",
  2645. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  2646. },
  2647. "parser": {
  2648. "type": "code",
  2649. "value": "({'name': getAttr('textContent')})"
  2650. },
  2651. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2652. "position": {
  2653. "type": "list<double>",
  2654. "value": [
  2655. 23,
  2656. 2
  2657. ]
  2658. },
  2659. "orientation": {
  2660. "type": "double",
  2661. "value": 0
  2662. },
  2663. "scale": {
  2664. "type": "list<double>",
  2665. "value": [
  2666. 1,
  2667. 1
  2668. ]
  2669. }
  2670. },
  2671. "7": {
  2672. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2673. "position": {
  2674. "type": "list<double>",
  2675. "value": [
  2676. 13.896110991026944,
  2677. 3.0451514439171206
  2678. ]
  2679. },
  2680. "orientation": {
  2681. "type": "double",
  2682. "value": 0
  2683. },
  2684. "scale": {
  2685. "type": "list<double>",
  2686. "value": [
  2687. 1,
  2688. 1
  2689. ]
  2690. },
  2691. "link-style": {
  2692. "type": "map<string,string>",
  2693. "value": {
  2694. "stroke": "#00ffff",
  2695. "stroke-dasharray": "",
  2696. "stroke-opacity": 0.1,
  2697. "arrow-start": "none",
  2698. "arrow-end": "classic-wide-long"
  2699. }
  2700. }
  2701. },
  2702. "17": {
  2703. "segments": {
  2704. "type": "string",
  2705. "value": "m0,0l200,0"
  2706. },
  2707. "style": {
  2708. "type": "map<string,string>",
  2709. "value": {
  2710. "stroke": "#000000",
  2711. "stroke-dasharray": "",
  2712. "fill": "#ffffff",
  2713. "fill-opacity": 0.75,
  2714. "font-size": "20px",
  2715. "stroke-width": 2,
  2716. "arrow-start": "none",
  2717. "arrow-end": "none"
  2718. }
  2719. },
  2720. "mapper": {
  2721. "type": "code",
  2722. "value": ""
  2723. },
  2724. "parser": {
  2725. "type": "code",
  2726. "value": ""
  2727. },
  2728. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2729. "position": {
  2730. "type": "list<double>",
  2731. "value": [
  2732. 1,
  2733. 26
  2734. ]
  2735. },
  2736. "orientation": {
  2737. "type": "double",
  2738. "value": 0
  2739. },
  2740. "scale": {
  2741. "type": "list<double>",
  2742. "value": [
  2743. 1,
  2744. 1
  2745. ]
  2746. }
  2747. },
  2748. "18": {
  2749. "textContent": {
  2750. "type": "string",
  2751. "value": ""
  2752. },
  2753. "style": {
  2754. "type": "map<string,string>",
  2755. "value": {
  2756. "stroke": "#000000",
  2757. "stroke-dasharray": "",
  2758. "fill": "#ffffff",
  2759. "fill-opacity": 0.75,
  2760. "font-size": "13px",
  2761. "stroke-width": 1,
  2762. "arrow-start": "none",
  2763. "arrow-end": "none"
  2764. }
  2765. },
  2766. "mapper": {
  2767. "type": "code",
  2768. "value": "var filenames = getAttr('attributes').map(\n function(attr)\n {\n return '+ '+attr['name'];\n });\n\n({'textContent': filenames.join('\\n')})"
  2769. },
  2770. "parser": {
  2771. "type": "code",
  2772. "value": ""
  2773. },
  2774. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2775. "position": {
  2776. "type": "list<double>",
  2777. "value": [
  2778. 3,
  2779. 25
  2780. ]
  2781. },
  2782. "orientation": {
  2783. "type": "double",
  2784. "value": 0
  2785. },
  2786. "scale": {
  2787. "type": "list<double>",
  2788. "value": [
  2789. 1,
  2790. 1
  2791. ]
  2792. }
  2793. },
  2794. "19": {
  2795. "width": {
  2796. "type": "boolean",
  2797. "value": true
  2798. },
  2799. "ratio": {
  2800. "type": "double",
  2801. "value": 1
  2802. },
  2803. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  2804. "position": {
  2805. "type": "list<double>",
  2806. "value": [
  2807. 168.09129891774523,
  2808. 30.625911571363645
  2809. ]
  2810. },
  2811. "orientation": {
  2812. "type": "double",
  2813. "value": 0
  2814. },
  2815. "scale": {
  2816. "type": "list<double>",
  2817. "value": [
  2818. 1,
  2819. 1
  2820. ]
  2821. },
  2822. "link-style": {
  2823. "type": "map<string,string>",
  2824. "value": {
  2825. "stroke": "#0000ff",
  2826. "stroke-dasharray": "",
  2827. "stroke-opacity": 1,
  2828. "arrow-start": "none",
  2829. "arrow-end": "classic-wide-long"
  2830. }
  2831. }
  2832. },
  2833. "20": {
  2834. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2835. "position": {
  2836. "type": "list<double>",
  2837. "value": [
  2838. 6.49899850809561,
  2839. 18.998998508095553
  2840. ]
  2841. },
  2842. "orientation": {
  2843. "type": "double",
  2844. "value": 0
  2845. },
  2846. "scale": {
  2847. "type": "list<double>",
  2848. "value": [
  2849. 1,
  2850. 1
  2851. ]
  2852. },
  2853. "link-style": {
  2854. "type": "map<string,string>",
  2855. "value": {
  2856. "stroke": "#00ffff",
  2857. "stroke-dasharray": "",
  2858. "stroke-opacity": 0.1,
  2859. "arrow-start": "none",
  2860. "arrow-end": "classic-wide-long"
  2861. }
  2862. }
  2863. }
  2864. },
  2865. "edges": [
  2866. {
  2867. "src": "5",
  2868. "dest": "7"
  2869. },
  2870. {
  2871. "src": "7",
  2872. "dest": "6"
  2873. },
  2874. {
  2875. "src": "17",
  2876. "dest": "19"
  2877. },
  2878. {
  2879. "src": "19",
  2880. "dest": "5"
  2881. },
  2882. {
  2883. "src": "5",
  2884. "dest": "20"
  2885. },
  2886. {
  2887. "src": "20",
  2888. "dest": "18"
  2889. }
  2890. ]
  2891. }
  2892. },
  2893. "$asuri": {
  2894. "type": "string",
  2895. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/8.instance"
  2896. },
  2897. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon"
  2898. },
  2899. "9": {
  2900. "link-style": {
  2901. "type": "map<string,string>",
  2902. "value": {
  2903. "stroke": "#000000",
  2904. "stroke-dasharray": "",
  2905. "stroke-opacity": 1,
  2906. "stroke-width": 2
  2907. }
  2908. },
  2909. "arrowHead": {
  2910. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  2911. "value": "custom"
  2912. },
  2913. "arrowTail": {
  2914. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  2915. "value": "arrow-black"
  2916. },
  2917. "typename": {
  2918. "type": "string",
  2919. "value": "InheritanceLink"
  2920. },
  2921. "position": {
  2922. "type": "list<double>",
  2923. "value": [
  2924. 460.58181154127107,
  2925. 353.8384695871913
  2926. ]
  2927. },
  2928. "orientation": {
  2929. "type": "double",
  2930. "value": 0
  2931. },
  2932. "scale": {
  2933. "type": "list<double>",
  2934. "value": [
  2935. 1,
  2936. 1
  2937. ]
  2938. },
  2939. "mapper": {
  2940. "type": "code",
  2941. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  2942. },
  2943. "parser": {
  2944. "type": "code",
  2945. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2946. },
  2947. "$contents": {
  2948. "type": "map<string,*>",
  2949. "value": {
  2950. "nodes": {
  2951. "164": {
  2952. "segments": {
  2953. "type": "string",
  2954. "value": "m0,0 l20,10 l-20,10 z"
  2955. },
  2956. "style": {
  2957. "type": "map<string,string>",
  2958. "value": {
  2959. "stroke": "#000000",
  2960. "fill": "#ffffff",
  2961. "opacity": 1,
  2962. "stroke-width": 1
  2963. }
  2964. },
  2965. "mapper": {
  2966. "type": "code",
  2967. "value": ""
  2968. },
  2969. "parser": {
  2970. "type": "code",
  2971. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  2972. },
  2973. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2974. "position": {
  2975. "type": "list<double>",
  2976. "value": [
  2977. "0;140.41818845872893,6.123031769111886e-15%",
  2978. "0;-30.837534040316314,-100%"
  2979. ]
  2980. },
  2981. "orientation": {
  2982. "type": "double",
  2983. "value": "0;-90"
  2984. },
  2985. "scale": {
  2986. "type": "list<double>",
  2987. "value": [
  2988. 1,
  2989. 1
  2990. ]
  2991. },
  2992. "$linkDecoratorInfo": {
  2993. "type": "map<string,double>",
  2994. "value": {
  2995. "xratio": 1,
  2996. "yoffset": -10
  2997. }
  2998. }
  2999. }
  3000. },
  3001. "edges": []
  3002. }
  3003. },
  3004. "$asuri": {
  3005. "type": "string",
  3006. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/9.instance"
  3007. },
  3008. "$segments": {
  3009. "type": "map<string,list<string>>",
  3010. "value": {
  3011. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/2.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/9.instance": "M351,427L352,353L460.58181154127107,353.8384695871913",
  3012. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/9.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance": "M460.58181154127107,353.8384695871913L611,355L611,323.000935546875"
  3013. }
  3014. },
  3015. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink"
  3016. },
  3017. "10": {
  3018. "link-style": {
  3019. "type": "map<string,string>",
  3020. "value": {
  3021. "stroke": "#000000",
  3022. "stroke-dasharray": "",
  3023. "stroke-opacity": 1,
  3024. "stroke-width": 2
  3025. }
  3026. },
  3027. "arrowHead": {
  3028. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3029. "value": "custom"
  3030. },
  3031. "arrowTail": {
  3032. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3033. "value": "arrow-black"
  3034. },
  3035. "typename": {
  3036. "type": "string",
  3037. "value": "InheritanceLink"
  3038. },
  3039. "position": {
  3040. "type": "list<double>",
  3041. "value": [
  3042. 624.50153061012,
  3043. 373.85000020824657
  3044. ]
  3045. },
  3046. "orientation": {
  3047. "type": "double",
  3048. "value": 0
  3049. },
  3050. "scale": {
  3051. "type": "list<double>",
  3052. "value": [
  3053. 1,
  3054. 1
  3055. ]
  3056. },
  3057. "mapper": {
  3058. "type": "code",
  3059. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3060. },
  3061. "parser": {
  3062. "type": "code",
  3063. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3064. },
  3065. "$contents": {
  3066. "type": "map<string,*>",
  3067. "value": {
  3068. "nodes": {
  3069. "164": {
  3070. "segments": {
  3071. "type": "string",
  3072. "value": "m0,0 l20,10 l-20,10 z"
  3073. },
  3074. "style": {
  3075. "type": "map<string,string>",
  3076. "value": {
  3077. "stroke": "#000000",
  3078. "fill": "#ffffff",
  3079. "opacity": 1,
  3080. "stroke-width": 1
  3081. }
  3082. },
  3083. "mapper": {
  3084. "type": "code",
  3085. "value": ""
  3086. },
  3087. "parser": {
  3088. "type": "code",
  3089. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3090. },
  3091. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3092. "position": {
  3093. "type": "list<double>",
  3094. "value": [
  3095. "0;-9.501013155936334,1.0203550432899522%",
  3096. "0;-48.95172979837315,-99.99479424242861%"
  3097. ]
  3098. },
  3099. "orientation": {
  3100. "type": "double",
  3101. "value": "0;-89.4153694792949"
  3102. },
  3103. "scale": {
  3104. "type": "list<double>",
  3105. "value": [
  3106. 1,
  3107. 1
  3108. ]
  3109. },
  3110. "$linkDecoratorInfo": {
  3111. "type": "map<string,double>",
  3112. "value": {
  3113. "xratio": 1,
  3114. "yoffset": -10
  3115. }
  3116. }
  3117. }
  3118. },
  3119. "edges": []
  3120. }
  3121. },
  3122. "$asuri": {
  3123. "type": "string",
  3124. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/10.instance"
  3125. },
  3126. "$segments": {
  3127. "type": "map<string,list<string>>",
  3128. "value": {
  3129. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/3.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/10.instance": "M624,423L624.50153061012,373.85000020824657",
  3130. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/10.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance": "M624.5007637440093,373.92515308709625L624.9999968784265,325.0003059142024"
  3131. }
  3132. },
  3133. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink"
  3134. },
  3135. "11": {
  3136. "link-style": {
  3137. "type": "map<string,string>",
  3138. "value": {
  3139. "stroke": "#000000",
  3140. "stroke-dasharray": "",
  3141. "stroke-opacity": 1,
  3142. "stroke-width": 2
  3143. }
  3144. },
  3145. "arrowHead": {
  3146. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3147. "value": "custom"
  3148. },
  3149. "arrowTail": {
  3150. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3151. "value": "arrow-black"
  3152. },
  3153. "typename": {
  3154. "type": "string",
  3155. "value": "InheritanceLink"
  3156. },
  3157. "position": {
  3158. "type": "list<double>",
  3159. "value": [
  3160. 713.3933133656509,
  3161. 395
  3162. ]
  3163. },
  3164. "orientation": {
  3165. "type": "double",
  3166. "value": 0
  3167. },
  3168. "scale": {
  3169. "type": "list<double>",
  3170. "value": [
  3171. 1,
  3172. 1
  3173. ]
  3174. },
  3175. "mapper": {
  3176. "type": "code",
  3177. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3178. },
  3179. "parser": {
  3180. "type": "code",
  3181. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3182. },
  3183. "$contents": {
  3184. "type": "map<string,*>",
  3185. "value": {
  3186. "nodes": {
  3187. "164": {
  3188. "segments": {
  3189. "type": "string",
  3190. "value": "m0,0 l20,10 l-20,10 z"
  3191. },
  3192. "style": {
  3193. "type": "map<string,string>",
  3194. "value": {
  3195. "stroke": "#000000",
  3196. "fill": "#ffffff",
  3197. "opacity": 1,
  3198. "stroke-width": 1
  3199. }
  3200. },
  3201. "mapper": {
  3202. "type": "code",
  3203. "value": ""
  3204. },
  3205. "parser": {
  3206. "type": "code",
  3207. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3208. },
  3209. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3210. "position": {
  3211. "type": "list<double>",
  3212. "value": [
  3213. "0;-29.393313365650897,6.123031769111886e-15%",
  3214. "0;-70.99957786153544,-100%"
  3215. ]
  3216. },
  3217. "orientation": {
  3218. "type": "double",
  3219. "value": "0;-90"
  3220. },
  3221. "scale": {
  3222. "type": "list<double>",
  3223. "value": [
  3224. 1,
  3225. 1
  3226. ]
  3227. },
  3228. "$linkDecoratorInfo": {
  3229. "type": "map<string,double>",
  3230. "value": {
  3231. "xratio": 1,
  3232. "yoffset": -10
  3233. }
  3234. }
  3235. }
  3236. },
  3237. "edges": []
  3238. }
  3239. },
  3240. "$asuri": {
  3241. "type": "string",
  3242. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/11.instance"
  3243. },
  3244. "$segments": {
  3245. "type": "map<string,list<string>>",
  3246. "value": {
  3247. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/6.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/11.instance": "M769,429L770,395L713.3933133656509,395",
  3248. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/11.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance": "M713.3933133656509,395L694,395L694,324.00042213846456"
  3249. }
  3250. },
  3251. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink"
  3252. },
  3253. "12": {
  3254. "link-style": {
  3255. "type": "map<string,string>",
  3256. "value": {
  3257. "stroke": "#000000",
  3258. "stroke-dasharray": "",
  3259. "stroke-opacity": 1,
  3260. "stroke-width": 2
  3261. }
  3262. },
  3263. "arrowHead": {
  3264. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3265. "value": "custom"
  3266. },
  3267. "arrowTail": {
  3268. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3269. "value": "arrow-black"
  3270. },
  3271. "typename": {
  3272. "type": "string",
  3273. "value": "InheritanceLink"
  3274. },
  3275. "position": {
  3276. "type": "list<double>",
  3277. "value": [
  3278. 901.5001460373674,
  3279. 379.47281099127525
  3280. ]
  3281. },
  3282. "orientation": {
  3283. "type": "double",
  3284. "value": 0
  3285. },
  3286. "scale": {
  3287. "type": "list<double>",
  3288. "value": [
  3289. 1,
  3290. 1
  3291. ]
  3292. },
  3293. "mapper": {
  3294. "type": "code",
  3295. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3296. },
  3297. "parser": {
  3298. "type": "code",
  3299. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3300. },
  3301. "$contents": {
  3302. "type": "map<string,*>",
  3303. "value": {
  3304. "nodes": {
  3305. "164": {
  3306. "segments": {
  3307. "type": "string",
  3308. "value": "m0,0 l20,10 l-20,10 z"
  3309. },
  3310. "style": {
  3311. "type": "map<string,string>",
  3312. "value": {
  3313. "stroke": "#000000",
  3314. "fill": "#ffffff",
  3315. "opacity": 1,
  3316. "stroke-width": 1
  3317. }
  3318. },
  3319. "mapper": {
  3320. "type": "code",
  3321. "value": ""
  3322. },
  3323. "parser": {
  3324. "type": "code",
  3325. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3326. },
  3327. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3328. "position": {
  3329. "type": "list<double>",
  3330. "value": [
  3331. "0;-171.49850345983498,1.8178813667513352%",
  3332. "0;-56.65405433456198,-99.98347517133229%"
  3333. ]
  3334. },
  3335. "orientation": {
  3336. "type": "double",
  3337. "value": "0;-88.95837332399012"
  3338. },
  3339. "scale": {
  3340. "type": "list<double>",
  3341. "value": [
  3342. 1,
  3343. 1
  3344. ]
  3345. },
  3346. "$linkDecoratorInfo": {
  3347. "type": "map<string,double>",
  3348. "value": {
  3349. "xratio": 1,
  3350. "yoffset": -10
  3351. }
  3352. }
  3353. }
  3354. },
  3355. "edges": []
  3356. }
  3357. },
  3358. "$asuri": {
  3359. "type": "string",
  3360. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/12.instance"
  3361. },
  3362. "$segments": {
  3363. "type": "map<string,list<string>>",
  3364. "value": {
  3365. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/7.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/12.instance": "M1071,430L1070,381L901.5001460373674,379.47281099127525",
  3366. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/12.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance": "M901.5001460373674,379.47281099127525L739,378L739.9999900946656,323.0005447933884"
  3367. }
  3368. },
  3369. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink"
  3370. },
  3371. "13": {
  3372. "link-style": {
  3373. "type": "map<string,string>",
  3374. "value": {
  3375. "stroke": "#000000",
  3376. "stroke-dasharray": "",
  3377. "stroke-opacity": 1,
  3378. "stroke-width": 2
  3379. }
  3380. },
  3381. "arrowHead": {
  3382. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3383. "value": "custom"
  3384. },
  3385. "arrowTail": {
  3386. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3387. "value": "arrow-black"
  3388. },
  3389. "typename": {
  3390. "type": "string",
  3391. "value": "InheritanceLink"
  3392. },
  3393. "position": {
  3394. "type": "list<double>",
  3395. "value": [
  3396. 1046.3908776697392,
  3397. 356.124390431857
  3398. ]
  3399. },
  3400. "orientation": {
  3401. "type": "double",
  3402. "value": 0
  3403. },
  3404. "scale": {
  3405. "type": "list<double>",
  3406. "value": [
  3407. 1,
  3408. 1
  3409. ]
  3410. },
  3411. "mapper": {
  3412. "type": "code",
  3413. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3414. },
  3415. "parser": {
  3416. "type": "code",
  3417. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3418. },
  3419. "$contents": {
  3420. "type": "map<string,*>",
  3421. "value": {
  3422. "nodes": {
  3423. "164": {
  3424. "segments": {
  3425. "type": "string",
  3426. "value": "m0,0 l20,10 l-20,10 z"
  3427. },
  3428. "style": {
  3429. "type": "map<string,string>",
  3430. "value": {
  3431. "stroke": "#000000",
  3432. "fill": "#ffffff",
  3433. "opacity": 1,
  3434. "stroke-width": 1
  3435. }
  3436. },
  3437. "mapper": {
  3438. "type": "code",
  3439. "value": ""
  3440. },
  3441. "parser": {
  3442. "type": "code",
  3443. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3444. },
  3445. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3446. "position": {
  3447. "type": "list<double>",
  3448. "value": [
  3449. "0;-280.38704498154743,2.7767067240356136%",
  3450. "0;-38.40122931413708,-99.96144206527183%"
  3451. ]
  3452. },
  3453. "orientation": {
  3454. "type": "double",
  3455. "value": "0;-88.40885972880525"
  3456. },
  3457. "scale": {
  3458. "type": "list<double>",
  3459. "value": [
  3460. 1,
  3461. 1
  3462. ]
  3463. },
  3464. "$linkDecoratorInfo": {
  3465. "type": "map<string,double>",
  3466. "value": {
  3467. "xratio": 1,
  3468. "yoffset": -10
  3469. }
  3470. }
  3471. }
  3472. },
  3473. "edges": []
  3474. }
  3475. },
  3476. "$asuri": {
  3477. "type": "string",
  3478. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/13.instance"
  3479. },
  3480. "$segments": {
  3481. "type": "map<string,list<string>>",
  3482. "value": {
  3483. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/8.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/13.instance": "M1289,426L1286,358L1046.3908776697392,356.124390431857",
  3484. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink/13.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/0.instance": "M1046.3908776697392,356.124390431857L775,354L775.9999768947189,318.0008317901235"
  3485. }
  3486. },
  3487. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/InheritanceLink"
  3488. },
  3489. "14": {
  3490. "link-style": {
  3491. "type": "map<string,string>",
  3492. "value": {
  3493. "stroke": "#000000",
  3494. "stroke-dasharray": "",
  3495. "stroke-opacity": 1,
  3496. "stroke-width": 2
  3497. }
  3498. },
  3499. "arrowHead": {
  3500. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3501. "value": "custom"
  3502. },
  3503. "arrowTail": {
  3504. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  3505. "value": "arrow-black"
  3506. },
  3507. "typename": {
  3508. "type": "string",
  3509. "value": "AssociationLink"
  3510. },
  3511. "position": {
  3512. "type": "list<double>",
  3513. "value": [
  3514. 1005.8500001922337,
  3515. 446.0029411727013
  3516. ]
  3517. },
  3518. "orientation": {
  3519. "type": "double",
  3520. "value": 0
  3521. },
  3522. "scale": {
  3523. "type": "list<double>",
  3524. "value": [
  3525. 1,
  3526. 1
  3527. ]
  3528. },
  3529. "mapper": {
  3530. "type": "code",
  3531. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  3532. },
  3533. "parser": {
  3534. "type": "code",
  3535. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3536. },
  3537. "$contents": {
  3538. "type": "map<string,*>",
  3539. "value": {
  3540. "nodes": {
  3541. "71": {
  3542. "textContent": {
  3543. "type": "string",
  3544. "value": "notFinished"
  3545. },
  3546. "style": {
  3547. "type": "map<string,string>",
  3548. "value": {
  3549. "stroke": "#000000",
  3550. "stroke-dasharray": "",
  3551. "fill": "#ffffff",
  3552. "fill-opacity": 0.75,
  3553. "font-size": "20px",
  3554. "stroke-width": 1,
  3555. "arrow-start": "none",
  3556. "arrow-end": "none"
  3557. }
  3558. },
  3559. "mapper": {
  3560. "type": "code",
  3561. "value": "({'textContent':getAttr('name')})"
  3562. },
  3563. "parser": {
  3564. "type": "code",
  3565. "value": "({'name':getAttr('textContent')})"
  3566. },
  3567. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3568. "position": {
  3569. "type": "list<double>",
  3570. "value": [
  3571. "0;12.911281730978544,0%",
  3572. "0;28.252315748680473,0%"
  3573. ]
  3574. },
  3575. "orientation": {
  3576. "type": "double",
  3577. "value": "0;178.87669728592456"
  3578. },
  3579. "scale": {
  3580. "type": "list<double>",
  3581. "value": [
  3582. 1,
  3583. 1
  3584. ]
  3585. },
  3586. "$linkDecoratorInfo": {
  3587. "type": "map<string,double>",
  3588. "value": {
  3589. "xratio": 0.3803680981595092,
  3590. "yoffset": -28.5
  3591. }
  3592. }
  3593. },
  3594. "74": {
  3595. "textContent": {
  3596. "type": "string",
  3597. "value": "*"
  3598. },
  3599. "style": {
  3600. "type": "map<string,string>",
  3601. "value": {
  3602. "stroke": "#000000",
  3603. "stroke-dasharray": "",
  3604. "fill": "#ffffff",
  3605. "fill-opacity": 0.75,
  3606. "font-size": "20px",
  3607. "stroke-width": 1,
  3608. "arrow-start": "none",
  3609. "arrow-end": "none"
  3610. }
  3611. },
  3612. "mapper": {
  3613. "type": "code",
  3614. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n//TBC: write some code that uses getAttr('cardinalities') to determine the correct cardinality to display"
  3615. },
  3616. "parser": {
  3617. "type": "code",
  3618. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3619. },
  3620. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3621. "position": {
  3622. "type": "list<double>",
  3623. "value": [
  3624. "0;-50.192969756516504,-99.98078216567245%",
  3625. "0;34.49061508955555,1.9604074934444298%"
  3626. ]
  3627. },
  3628. "orientation": {
  3629. "type": "double",
  3630. "value": "0;178.87669728592465"
  3631. },
  3632. "scale": {
  3633. "type": "list<double>",
  3634. "value": [
  3635. 1,
  3636. 1
  3637. ]
  3638. },
  3639. "$linkDecoratorInfo": {
  3640. "type": "map<string,double>",
  3641. "value": {
  3642. "xratio": 1.2085889570552146,
  3643. "yoffset": -33.5
  3644. }
  3645. }
  3646. },
  3647. "77": {
  3648. "textContent": {
  3649. "type": "string",
  3650. "value": "*"
  3651. },
  3652. "style": {
  3653. "type": "map<string,string>",
  3654. "value": {
  3655. "stroke": "#000000",
  3656. "stroke-dasharray": "",
  3657. "fill": "#ffffff",
  3658. "fill-opacity": 0.75,
  3659. "font-size": "20px",
  3660. "stroke-width": 1,
  3661. "arrow-start": "none",
  3662. "arrow-end": "none"
  3663. }
  3664. },
  3665. "mapper": {
  3666. "type": "code",
  3667. "value": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */\n//TBC: write some code that uses getAttr('cardinalities') to determine the correct cardinality to display"
  3668. },
  3669. "parser": {
  3670. "type": "code",
  3671. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3672. },
  3673. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3674. "position": {
  3675. "type": "list<double>",
  3676. "value": [
  3677. "0;51.80673631807031,0%",
  3678. "0;32.490620852799,0%"
  3679. ]
  3680. },
  3681. "orientation": {
  3682. "type": "double",
  3683. "value": "0;178.87669728592456"
  3684. },
  3685. "scale": {
  3686. "type": "list<double>",
  3687. "value": [
  3688. 1,
  3689. 1
  3690. ]
  3691. },
  3692. "$linkDecoratorInfo": {
  3693. "type": "map<string,double>",
  3694. "value": {
  3695. "xratio": -0.03680981595092025,
  3696. "yoffset": -33.5
  3697. }
  3698. }
  3699. },
  3700. "140": {
  3701. "segments": {
  3702. "type": "string",
  3703. "value": "m0,0 l20,8 l-20,8"
  3704. },
  3705. "style": {
  3706. "type": "map<string,string>",
  3707. "value": {
  3708. "stroke": "#000000",
  3709. "fill": "#000000",
  3710. "fill-opacity": 0,
  3711. "stroke-width": 1,
  3712. "opacity": 1
  3713. }
  3714. },
  3715. "mapper": {
  3716. "type": "code",
  3717. "value": ""
  3718. },
  3719. "parser": {
  3720. "type": "code",
  3721. "value": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  3722. },
  3723. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3724. "position": {
  3725. "type": "list<double>",
  3726. "value": [
  3727. "0;-50.69287366734477,-99.98078216567245%",
  3728. "0;8.99551563730904,1.9604074934444298%"
  3729. ]
  3730. },
  3731. "orientation": {
  3732. "type": "double",
  3733. "value": "0;178.87669728592465"
  3734. },
  3735. "scale": {
  3736. "type": "list<double>",
  3737. "value": [
  3738. 1,
  3739. 1
  3740. ]
  3741. },
  3742. "$linkDecoratorInfo": {
  3743. "type": "map<string,double>",
  3744. "value": {
  3745. "xratio": 1,
  3746. "yoffset": -8
  3747. }
  3748. }
  3749. }
  3750. },
  3751. "edges": []
  3752. }
  3753. },
  3754. "$asuri": {
  3755. "type": "string",
  3756. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association/14.instance"
  3757. },
  3758. "$segments": {
  3759. "type": "map<string,list<string>>",
  3760. "value": {
  3761. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/7.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/AssociationLink/14.instance": "M1057,445L1005.8500001922337,446.0029411727013",
  3762. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/AssociationLink/14.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/ClassIcon/6.instance": "M1005.9251470827116,446.00146770426056L955.0002939254133,446.99999423675655"
  3763. }
  3764. },
  3765. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons/AssociationLink"
  3766. }
  3767. },
  3768. "edges": [],
  3769. "metamodels": [
  3770. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.umlIcons"
  3771. ]
  3772. },
  3773. "asm": {
  3774. "nodes": {
  3775. "0": {
  3776. "name": {
  3777. "type": "string",
  3778. "value": "Step"
  3779. },
  3780. "attributes": {
  3781. "type": "list<$ATTRIBUTE>",
  3782. "value": []
  3783. },
  3784. "constraints": {
  3785. "type": "list<$EVENT_HANDLER>",
  3786. "value": []
  3787. },
  3788. "actions": {
  3789. "type": "list<$EVENT_HANDLER>",
  3790. "value": []
  3791. },
  3792. "cardinalities": {
  3793. "type": "list<$CARDINALITY>",
  3794. "value": []
  3795. },
  3796. "abstract": {
  3797. "type": "boolean",
  3798. "value": true
  3799. },
  3800. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  3801. },
  3802. "1": {
  3803. "name": {
  3804. "type": "string",
  3805. "value": "next"
  3806. },
  3807. "attributes": {
  3808. "type": "list<$ATTRIBUTE>",
  3809. "value": []
  3810. },
  3811. "constraints": {
  3812. "type": "list<$EVENT_HANDLER>",
  3813. "value": []
  3814. },
  3815. "actions": {
  3816. "type": "list<$EVENT_HANDLER>",
  3817. "value": []
  3818. },
  3819. "cardinalities": {
  3820. "type": "list<$CARDINALITY>",
  3821. "value": []
  3822. },
  3823. "linktype": {
  3824. "type": "ENUM(visual,containment)",
  3825. "value": "visual"
  3826. },
  3827. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  3828. },
  3829. "2": {
  3830. "name": {
  3831. "type": "string",
  3832. "value": "StartEngines"
  3833. },
  3834. "attributes": {
  3835. "type": "list<$ATTRIBUTE>",
  3836. "value": []
  3837. },
  3838. "constraints": {
  3839. "type": "list<$EVENT_HANDLER>",
  3840. "value": []
  3841. },
  3842. "actions": {
  3843. "type": "list<$EVENT_HANDLER>",
  3844. "value": []
  3845. },
  3846. "cardinalities": {
  3847. "type": "list<$CARDINALITY>",
  3848. "value": []
  3849. },
  3850. "abstract": {
  3851. "type": "boolean",
  3852. "value": false
  3853. },
  3854. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  3855. },
  3856. "3": {
  3857. "name": {
  3858. "type": "string",
  3859. "value": "CarsGoToStart"
  3860. },
  3861. "attributes": {
  3862. "type": "list<$ATTRIBUTE>",
  3863. "value": []
  3864. },
  3865. "constraints": {
  3866. "type": "list<$EVENT_HANDLER>",
  3867. "value": []
  3868. },
  3869. "actions": {
  3870. "type": "list<$EVENT_HANDLER>",
  3871. "value": []
  3872. },
  3873. "cardinalities": {
  3874. "type": "list<$CARDINALITY>",
  3875. "value": []
  3876. },
  3877. "abstract": {
  3878. "type": "boolean",
  3879. "value": false
  3880. },
  3881. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  3882. },
  3883. "4": {
  3884. "name": {
  3885. "type": "string",
  3886. "value": "Positionable"
  3887. },
  3888. "attributes": {
  3889. "type": "list<$ATTRIBUTE>",
  3890. "value": [
  3891. {
  3892. "name": "position",
  3893. "type": "list<int>",
  3894. "default": "[0,0]"
  3895. }
  3896. ]
  3897. },
  3898. "constraints": {
  3899. "type": "list<$EVENT_HANDLER>",
  3900. "value": []
  3901. },
  3902. "actions": {
  3903. "type": "list<$EVENT_HANDLER>",
  3904. "value": []
  3905. },
  3906. "cardinalities": {
  3907. "type": "list<$CARDINALITY>",
  3908. "value": []
  3909. },
  3910. "abstract": {
  3911. "type": "boolean",
  3912. "value": true
  3913. },
  3914. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  3915. },
  3916. "5": {
  3917. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  3918. },
  3919. "6": {
  3920. "name": {
  3921. "type": "string",
  3922. "value": "StepOnGas"
  3923. },
  3924. "attributes": {
  3925. "type": "list<$ATTRIBUTE>",
  3926. "value": []
  3927. },
  3928. "constraints": {
  3929. "type": "list<$EVENT_HANDLER>",
  3930. "value": []
  3931. },
  3932. "actions": {
  3933. "type": "list<$EVENT_HANDLER>",
  3934. "value": []
  3935. },
  3936. "cardinalities": {
  3937. "type": "list<$CARDINALITY>",
  3938. "value": []
  3939. },
  3940. "abstract": {
  3941. "type": "boolean",
  3942. "value": false
  3943. },
  3944. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  3945. },
  3946. "7": {
  3947. "name": {
  3948. "type": "string",
  3949. "value": "IsRaceFinished"
  3950. },
  3951. "attributes": {
  3952. "type": "list<$ATTRIBUTE>",
  3953. "value": []
  3954. },
  3955. "constraints": {
  3956. "type": "list<$EVENT_HANDLER>",
  3957. "value": []
  3958. },
  3959. "actions": {
  3960. "type": "list<$EVENT_HANDLER>",
  3961. "value": []
  3962. },
  3963. "cardinalities": {
  3964. "type": "list<$CARDINALITY>",
  3965. "value": []
  3966. },
  3967. "abstract": {
  3968. "type": "boolean",
  3969. "value": false
  3970. },
  3971. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  3972. },
  3973. "8": {
  3974. "name": {
  3975. "type": "string",
  3976. "value": "AwardCeremony"
  3977. },
  3978. "attributes": {
  3979. "type": "list<$ATTRIBUTE>",
  3980. "value": []
  3981. },
  3982. "constraints": {
  3983. "type": "list<$EVENT_HANDLER>",
  3984. "value": []
  3985. },
  3986. "actions": {
  3987. "type": "list<$EVENT_HANDLER>",
  3988. "value": []
  3989. },
  3990. "cardinalities": {
  3991. "type": "list<$CARDINALITY>",
  3992. "value": []
  3993. },
  3994. "abstract": {
  3995. "type": "boolean",
  3996. "value": false
  3997. },
  3998. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  3999. },
  4000. "9": {
  4001. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  4002. },
  4003. "10": {
  4004. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  4005. },
  4006. "11": {
  4007. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  4008. },
  4009. "12": {
  4010. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  4011. },
  4012. "13": {
  4013. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  4014. },
  4015. "14": {
  4016. "name": {
  4017. "type": "string",
  4018. "value": "notFinished"
  4019. },
  4020. "attributes": {
  4021. "type": "list<$ATTRIBUTE>",
  4022. "value": []
  4023. },
  4024. "constraints": {
  4025. "type": "list<$EVENT_HANDLER>",
  4026. "value": []
  4027. },
  4028. "actions": {
  4029. "type": "list<$EVENT_HANDLER>",
  4030. "value": []
  4031. },
  4032. "cardinalities": {
  4033. "type": "list<$CARDINALITY>",
  4034. "value": []
  4035. },
  4036. "linktype": {
  4037. "type": "ENUM(visual,containment)",
  4038. "value": "visual"
  4039. },
  4040. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  4041. }
  4042. },
  4043. "edges": [
  4044. {
  4045. "src": "0",
  4046. "dest": "1"
  4047. },
  4048. {
  4049. "src": "1",
  4050. "dest": "0"
  4051. },
  4052. {
  4053. "src": "0",
  4054. "dest": "5"
  4055. },
  4056. {
  4057. "src": "5",
  4058. "dest": "4"
  4059. },
  4060. {
  4061. "src": "2",
  4062. "dest": "9"
  4063. },
  4064. {
  4065. "src": "9",
  4066. "dest": "0"
  4067. },
  4068. {
  4069. "src": "3",
  4070. "dest": "10"
  4071. },
  4072. {
  4073. "src": "10",
  4074. "dest": "0"
  4075. },
  4076. {
  4077. "src": "6",
  4078. "dest": "11"
  4079. },
  4080. {
  4081. "src": "11",
  4082. "dest": "0"
  4083. },
  4084. {
  4085. "src": "7",
  4086. "dest": "12"
  4087. },
  4088. {
  4089. "src": "12",
  4090. "dest": "0"
  4091. },
  4092. {
  4093. "src": "8",
  4094. "dest": "13"
  4095. },
  4096. {
  4097. "src": "13",
  4098. "dest": "0"
  4099. },
  4100. {
  4101. "src": "7",
  4102. "dest": "14"
  4103. },
  4104. {
  4105. "src": "14",
  4106. "dest": "6"
  4107. }
  4108. ],
  4109. "metamodels": [
  4110. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram"
  4111. ]
  4112. }
  4113. }