EntityRelationship.defaultIcons.model 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "IconIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 249,
  13. 125
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1.3401,
  24. 1.3401
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "1": {
  40. "width": {
  41. "type": "double",
  42. "value": "200"
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": "150"
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": "10"
  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": 1
  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. "2": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "EntityIcon"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "stroke-dasharray": "",
  100. "fill": "#000000",
  101. "fill-opacity": "1",
  102. "font-size": "13px"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "({\"textContent\":getAttr(\"typename\")})"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({\"typename\":getAttr(\"textContent\")})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 58,
  118. 151
  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. "3": {
  134. "distance": {
  135. "type": "double",
  136. "value": 0
  137. },
  138. "alignment": {
  139. "type": "ENUM(\"right\",\"left\",\"center\")",
  140. "value": "center"
  141. },
  142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  143. "position": {
  144. "type": "list<double>",
  145. "value": [
  146. 93.49899850809561,
  147. 137.49900000000002
  148. ]
  149. },
  150. "orientation": {
  151. "type": "double",
  152. "value": 0
  153. },
  154. "scale": {
  155. "type": "list<double>",
  156. "value": [
  157. 1,
  158. 1
  159. ]
  160. },
  161. "link-style": {
  162. "type": "map<string,string>",
  163. "value": {
  164. "stroke": "#00ff00",
  165. "stroke-dasharray": "",
  166. "stroke-opacity": 1,
  167. "arrow-start": "none",
  168. "arrow-end": "classic-wide-long"
  169. }
  170. }
  171. }
  172. },
  173. "edges": [
  174. {
  175. "src": "2",
  176. "dest": 3
  177. },
  178. {
  179. "src": 3,
  180. "dest": "1"
  181. }
  182. ]
  183. }
  184. },
  185. "$asuri": {
  186. "type": "string",
  187. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/0.instance"
  188. },
  189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  190. },
  191. "1": {
  192. "typename": {
  193. "type": "string",
  194. "value": "LinkIcon"
  195. },
  196. "position": {
  197. "type": "list<double>",
  198. "value": [
  199. 250,
  200. 403
  201. ]
  202. },
  203. "orientation": {
  204. "type": "double",
  205. "value": 0
  206. },
  207. "scale": {
  208. "type": "list<double>",
  209. "value": [
  210. 1,
  211. 1
  212. ]
  213. },
  214. "mapper": {
  215. "type": "code",
  216. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  217. },
  218. "parser": {
  219. "type": "code",
  220. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  221. },
  222. "$contents": {
  223. "type": "map<string,*>",
  224. "value": {
  225. "nodes": {
  226. "8": {
  227. "width": {
  228. "type": "double",
  229. "value": "200"
  230. },
  231. "height": {
  232. "type": "double",
  233. "value": "150"
  234. },
  235. "cornerRadius": {
  236. "type": "double",
  237. "value": "10"
  238. },
  239. "style": {
  240. "type": "map<string,string>",
  241. "value": {
  242. "stroke": "#000000",
  243. "stroke-dasharray": ". ",
  244. "fill": "#ffffff",
  245. "fill-opacity": 0.75,
  246. "stroke-width": 1
  247. }
  248. },
  249. "mapper": {
  250. "type": "code",
  251. "value": ""
  252. },
  253. "parser": {
  254. "type": "code",
  255. "value": ""
  256. },
  257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  258. "position": {
  259. "type": "list<double>",
  260. "value": [
  261. 0,
  262. 1
  263. ]
  264. },
  265. "orientation": {
  266. "type": "double",
  267. "value": 0
  268. },
  269. "scale": {
  270. "type": "list<double>",
  271. "value": [
  272. 1,
  273. 1
  274. ]
  275. }
  276. },
  277. "9": {
  278. "textContent": {
  279. "type": "string",
  280. "value": "RelationshipLink"
  281. },
  282. "style": {
  283. "type": "map<string,string>",
  284. "value": {
  285. "stroke": "#000000",
  286. "stroke-dasharray": "",
  287. "fill": "#000000",
  288. "fill-opacity": "1",
  289. "font-size": "13px"
  290. }
  291. },
  292. "mapper": {
  293. "type": "code",
  294. "value": "({\"textContent\":getAttr(\"typename\")})"
  295. },
  296. "parser": {
  297. "type": "code",
  298. "value": "({\"typename\":getAttr(\"textContent\")})"
  299. },
  300. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  301. "position": {
  302. "type": "list<double>",
  303. "value": [
  304. 58,
  305. 153
  306. ]
  307. },
  308. "orientation": {
  309. "type": "double",
  310. "value": 0
  311. },
  312. "scale": {
  313. "type": "list<double>",
  314. "value": [
  315. 1,
  316. 1
  317. ]
  318. }
  319. },
  320. "10": {
  321. "distance": {
  322. "type": "double",
  323. "value": 0
  324. },
  325. "alignment": {
  326. "type": "ENUM(\"right\",\"left\",\"center\")",
  327. "value": "center"
  328. },
  329. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  330. "position": {
  331. "type": "list<double>",
  332. "value": [
  333. 98.49899850809561,
  334. 131.99900000000002
  335. ]
  336. },
  337. "orientation": {
  338. "type": "double",
  339. "value": 0
  340. },
  341. "scale": {
  342. "type": "list<double>",
  343. "value": [
  344. 1,
  345. 1
  346. ]
  347. },
  348. "link-style": {
  349. "type": "map<string,string>",
  350. "value": {
  351. "stroke": "#00ff00",
  352. "stroke-dasharray": "",
  353. "stroke-opacity": 1,
  354. "arrow-start": "none",
  355. "arrow-end": "classic-wide-long"
  356. }
  357. }
  358. }
  359. },
  360. "edges": [
  361. {
  362. "src": "9",
  363. "dest": 10
  364. },
  365. {
  366. "src": 10,
  367. "dest": "8"
  368. }
  369. ]
  370. }
  371. },
  372. "$asuri": {
  373. "type": "string",
  374. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link/1.instance"
  375. },
  376. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon"
  377. },
  378. "2": {
  379. "typename": {
  380. "type": "string",
  381. "value": "RectangleIcon"
  382. },
  383. "position": {
  384. "type": "list<double>",
  385. "value": [
  386. 251,
  387. 124
  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": ""
  404. },
  405. "parser": {
  406. "type": "code",
  407. "value": ""
  408. },
  409. "$contents": {
  410. "type": "map<string,*>",
  411. "value": {
  412. "nodes": {
  413. "17": {
  414. "width": {
  415. "type": "double",
  416. "value": 200
  417. },
  418. "height": {
  419. "type": "double",
  420. "value": 125
  421. },
  422. "cornerRadius": {
  423. "type": "double",
  424. "value": 5
  425. },
  426. "style": {
  427. "type": "map<string,string>",
  428. "value": {
  429. "stroke": "#ff3000",
  430. "stroke-dasharray": "",
  431. "fill": "#ff3000",
  432. "fill-opacity": 0.25,
  433. "font-size": "20px",
  434. "stroke-width": 2,
  435. "arrow-start": "none",
  436. "arrow-end": "none"
  437. }
  438. },
  439. "mapper": {
  440. "type": "code",
  441. "value": "({\"width\":getAttr(\"width\"), \"height\":getAttr(\"height\"), \"cornerRadius\":getAttr(\"cornerRadius\"), \"style\":getAttr(\"style\")})"
  442. },
  443. "parser": {
  444. "type": "code",
  445. "value": ""
  446. },
  447. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  448. "position": {
  449. "type": "list<double>",
  450. "value": [
  451. 0,
  452. 1
  453. ]
  454. },
  455. "orientation": {
  456. "type": "double",
  457. "value": 0
  458. },
  459. "scale": {
  460. "type": "list<double>",
  461. "value": [
  462. 1,
  463. 1
  464. ]
  465. }
  466. }
  467. },
  468. "edges": []
  469. }
  470. },
  471. "$asuri": {
  472. "type": "string",
  473. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle/2.instance"
  474. },
  475. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon"
  476. },
  477. "3": {
  478. "typename": {
  479. "type": "string",
  480. "value": "TextIcon"
  481. },
  482. "position": {
  483. "type": "list<double>",
  484. "value": [
  485. 265,
  486. 128
  487. ]
  488. },
  489. "orientation": {
  490. "type": "double",
  491. "value": 0
  492. },
  493. "scale": {
  494. "type": "list<double>",
  495. "value": [
  496. 1,
  497. 1
  498. ]
  499. },
  500. "mapper": {
  501. "type": "code",
  502. "value": ""
  503. },
  504. "parser": {
  505. "type": "code",
  506. "value": ""
  507. },
  508. "$contents": {
  509. "type": "map<string,*>",
  510. "value": {
  511. "nodes": {
  512. "21": {
  513. "textContent": {
  514. "type": "string",
  515. "value": "<coded>"
  516. },
  517. "style": {
  518. "type": "map<string,string>",
  519. "value": {
  520. "stroke": "#000000",
  521. "stroke-dasharray": "",
  522. "fill": "#ffffff",
  523. "fill-opacity": 0.75,
  524. "font-size": "20px",
  525. "stroke-width": 1,
  526. "arrow-start": "none",
  527. "arrow-end": "none"
  528. }
  529. },
  530. "mapper": {
  531. "type": "code",
  532. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  533. },
  534. "parser": {
  535. "type": "code",
  536. "value": "({\"textContent\":getAttr(\"textContent\")})"
  537. },
  538. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  539. "position": {
  540. "type": "list<double>",
  541. "value": [
  542. 0,
  543. 0
  544. ]
  545. },
  546. "orientation": {
  547. "type": "double",
  548. "value": 0
  549. },
  550. "scale": {
  551. "type": "list<double>",
  552. "value": [
  553. 1,
  554. 1
  555. ]
  556. }
  557. }
  558. },
  559. "edges": []
  560. }
  561. },
  562. "$asuri": {
  563. "type": "string",
  564. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/3.instance"
  565. },
  566. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  567. },
  568. "4": {
  569. "link-style": {
  570. "type": "map<string,string>",
  571. "value": {
  572. "stroke": "#00ffff",
  573. "stroke-dasharray": "",
  574. "stroke-opacity": 0.1,
  575. "arrow-start": "none",
  576. "arrow-end": "classic-wide-long"
  577. }
  578. },
  579. "typename": {
  580. "type": "string",
  581. "value": "ContainLink"
  582. },
  583. "position": {
  584. "type": "list<double>",
  585. "value": [
  586. 264.2489985080956,
  587. 128.9989985080956
  588. ]
  589. },
  590. "orientation": {
  591. "type": "double",
  592. "value": 0
  593. },
  594. "scale": {
  595. "type": "list<double>",
  596. "value": [
  597. 1,
  598. 1
  599. ]
  600. },
  601. "mapper": {
  602. "type": "code",
  603. "value": ""
  604. },
  605. "parser": {
  606. "type": "code",
  607. "value": ""
  608. },
  609. "$contents": {
  610. "type": "map<string,*>",
  611. "value": {
  612. "nodes": {},
  613. "edges": []
  614. }
  615. },
  616. "$asuri": {
  617. "type": "string",
  618. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/4.instance"
  619. },
  620. "$segments": {
  621. "type": "map<string,list<string>>",
  622. "value": {
  623. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/2.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/4.instance": "M250.99999999908528,125.00000000000003L264.25,129.00000000000003",
  624. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/4.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/3.instance": "M264.25,129.00000000000003L290.5,140.00000000000003"
  625. }
  626. },
  627. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  628. },
  629. "5": {
  630. "link-style": {
  631. "type": "map<string,string>",
  632. "value": {
  633. "stroke": "#ff00ff",
  634. "stroke-dasharray": "",
  635. "stroke-opacity": 0.1,
  636. "arrow-start": "none",
  637. "arrow-end": "classic-wide-long"
  638. }
  639. },
  640. "typename": {
  641. "type": "string",
  642. "value": "IconContentsLink"
  643. },
  644. "position": {
  645. "type": "list<double>",
  646. "value": [
  647. "299.12820500333106,50%",
  648. "156.3301281270819,50%"
  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. "edges": []
  675. }
  676. },
  677. "$asuri": {
  678. "type": "string",
  679. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/5.instance"
  680. },
  681. "$segments": {
  682. "type": "map<string,list<string>>",
  683. "value": {
  684. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/5.instance": "M249,125L299.12820500333106,156.3301281270819",
  685. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/5.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/2.instance": "M299.0639929715406,156.28999560721286L350.99978097080884,187.49986310675558"
  686. }
  687. },
  688. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  689. },
  690. "6": {
  691. "link-style": {
  692. "type": "map<string,string>",
  693. "value": {
  694. "stroke": "#ff00ff",
  695. "stroke-dasharray": "",
  696. "stroke-opacity": 0.1,
  697. "arrow-start": "none",
  698. "arrow-end": "classic-wide-long"
  699. }
  700. },
  701. "typename": {
  702. "type": "string",
  703. "value": "IconContentsLink"
  704. },
  705. "position": {
  706. "type": "list<double>",
  707. "value": [
  708. "255.62449925404778,50%",
  709. "126.9994992540478,50%"
  710. ]
  711. },
  712. "orientation": {
  713. "type": "double",
  714. "value": 0
  715. },
  716. "scale": {
  717. "type": "list<double>",
  718. "value": [
  719. 1,
  720. 1
  721. ]
  722. },
  723. "mapper": {
  724. "type": "code",
  725. "value": ""
  726. },
  727. "parser": {
  728. "type": "code",
  729. "value": ""
  730. },
  731. "$contents": {
  732. "type": "map<string,*>",
  733. "value": {
  734. "nodes": {},
  735. "edges": []
  736. }
  737. },
  738. "$asuri": {
  739. "type": "string",
  740. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/6.instance"
  741. },
  742. "$segments": {
  743. "type": "map<string,list<string>>",
  744. "value": {
  745. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/6.instance": "M249,125L255.62449925404778,126.9994992540478",
  746. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/6.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/4.instance": "M255.62449925404778,126.9994992540478L262.24899850809555,128.9989985080956"
  747. }
  748. },
  749. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  750. },
  751. "7": {
  752. "link-style": {
  753. "type": "map<string,string>",
  754. "value": {
  755. "stroke": "#ff00ff",
  756. "stroke-dasharray": "",
  757. "stroke-opacity": 0.1,
  758. "arrow-start": "none",
  759. "arrow-end": "classic-wide-long"
  760. }
  761. },
  762. "typename": {
  763. "type": "string",
  764. "value": "IconContentsLink"
  765. },
  766. "position": {
  767. "type": "list<double>",
  768. "value": [
  769. "262.25,50%",
  770. "129,50%"
  771. ]
  772. },
  773. "orientation": {
  774. "type": "double",
  775. "value": 0
  776. },
  777. "scale": {
  778. "type": "list<double>",
  779. "value": [
  780. 1,
  781. 1
  782. ]
  783. },
  784. "mapper": {
  785. "type": "code",
  786. "value": ""
  787. },
  788. "parser": {
  789. "type": "code",
  790. "value": ""
  791. },
  792. "$contents": {
  793. "type": "map<string,*>",
  794. "value": {
  795. "nodes": {},
  796. "edges": []
  797. }
  798. },
  799. "$asuri": {
  800. "type": "string",
  801. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/7.instance"
  802. },
  803. "$segments": {
  804. "type": "map<string,list<string>>",
  805. "value": {
  806. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/7.instance": "M249,125L262.25,129",
  807. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/7.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/3.instance": "M262.25,129L290.5,140.00000000000003"
  808. }
  809. },
  810. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  811. },
  812. "8": {
  813. "typename": {
  814. "type": "string",
  815. "value": "IconIcon"
  816. },
  817. "position": {
  818. "type": "list<double>",
  819. "value": [
  820. 549,
  821. 149
  822. ]
  823. },
  824. "orientation": {
  825. "type": "double",
  826. "value": 0
  827. },
  828. "scale": {
  829. "type": "list<double>",
  830. "value": [
  831. 1,
  832. 1
  833. ]
  834. },
  835. "mapper": {
  836. "type": "code",
  837. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  838. },
  839. "parser": {
  840. "type": "code",
  841. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  842. },
  843. "$contents": {
  844. "type": "map<string,*>",
  845. "value": {
  846. "nodes": {
  847. "1": {
  848. "width": {
  849. "type": "double",
  850. "value": "200"
  851. },
  852. "height": {
  853. "type": "double",
  854. "value": "150"
  855. },
  856. "cornerRadius": {
  857. "type": "double",
  858. "value": "10"
  859. },
  860. "style": {
  861. "type": "map<string,string>",
  862. "value": {
  863. "stroke": "#000000",
  864. "stroke-dasharray": "- ",
  865. "fill": "#ffffff",
  866. "fill-opacity": 0.75,
  867. "stroke-width": 1
  868. }
  869. },
  870. "mapper": {
  871. "type": "code",
  872. "value": ""
  873. },
  874. "parser": {
  875. "type": "code",
  876. "value": ""
  877. },
  878. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  879. "position": {
  880. "type": "list<double>",
  881. "value": [
  882. 0,
  883. 0
  884. ]
  885. },
  886. "orientation": {
  887. "type": "double",
  888. "value": 0
  889. },
  890. "scale": {
  891. "type": "list<double>",
  892. "value": [
  893. 1,
  894. 1
  895. ]
  896. }
  897. },
  898. "2": {
  899. "textContent": {
  900. "type": "string",
  901. "value": "GlobalConstraintIcon"
  902. },
  903. "style": {
  904. "type": "map<string,string>",
  905. "value": {
  906. "stroke": "#000000",
  907. "stroke-dasharray": "",
  908. "fill": "#000000",
  909. "fill-opacity": "1",
  910. "font-size": "13px"
  911. }
  912. },
  913. "mapper": {
  914. "type": "code",
  915. "value": "({\"textContent\":getAttr(\"typename\")})"
  916. },
  917. "parser": {
  918. "type": "code",
  919. "value": "({\"typename\":getAttr(\"textContent\")})"
  920. },
  921. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  922. "position": {
  923. "type": "list<double>",
  924. "value": [
  925. 58,
  926. 151
  927. ]
  928. },
  929. "orientation": {
  930. "type": "double",
  931. "value": 0
  932. },
  933. "scale": {
  934. "type": "list<double>",
  935. "value": [
  936. 1,
  937. 1
  938. ]
  939. }
  940. },
  941. "3": {
  942. "distance": {
  943. "type": "double",
  944. "value": 0
  945. },
  946. "alignment": {
  947. "type": "ENUM(\"right\",\"left\",\"center\")",
  948. "value": "center"
  949. },
  950. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  951. "position": {
  952. "type": "list<double>",
  953. "value": [
  954. 93.49899850809561,
  955. 137.49900000000002
  956. ]
  957. },
  958. "orientation": {
  959. "type": "double",
  960. "value": 0
  961. },
  962. "scale": {
  963. "type": "list<double>",
  964. "value": [
  965. 1,
  966. 1
  967. ]
  968. },
  969. "link-style": {
  970. "type": "map<string,string>",
  971. "value": {
  972. "stroke": "#00ff00",
  973. "stroke-dasharray": "",
  974. "stroke-opacity": 1,
  975. "arrow-start": "none",
  976. "arrow-end": "classic-wide-long"
  977. }
  978. }
  979. }
  980. },
  981. "edges": [
  982. {
  983. "src": "2",
  984. "dest": 3
  985. },
  986. {
  987. "src": 3,
  988. "dest": "1"
  989. }
  990. ]
  991. }
  992. },
  993. "$asuri": {
  994. "type": "string",
  995. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/8.instance"
  996. },
  997. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  998. },
  999. "9": {
  1000. "typename": {
  1001. "type": "string",
  1002. "value": "TextIcon"
  1003. },
  1004. "position": {
  1005. "type": "list<double>",
  1006. "value": [
  1007. 548,
  1008. 149
  1009. ]
  1010. },
  1011. "orientation": {
  1012. "type": "double",
  1013. "value": 0
  1014. },
  1015. "scale": {
  1016. "type": "list<double>",
  1017. "value": [
  1018. 1,
  1019. 1
  1020. ]
  1021. },
  1022. "mapper": {
  1023. "type": "code",
  1024. "value": ""
  1025. },
  1026. "parser": {
  1027. "type": "code",
  1028. "value": ""
  1029. },
  1030. "$contents": {
  1031. "type": "map<string,*>",
  1032. "value": {
  1033. "nodes": {
  1034. "21": {
  1035. "textContent": {
  1036. "type": "string",
  1037. "value": "CONSTRAINT"
  1038. },
  1039. "style": {
  1040. "type": "map<string,string>",
  1041. "value": {
  1042. "stroke": "#00ff70",
  1043. "stroke-dasharray": "",
  1044. "fill": "#00ff70",
  1045. "fill-opacity": 0.75,
  1046. "font-size": "20px",
  1047. "stroke-width": 1,
  1048. "arrow-start": "none",
  1049. "arrow-end": "none"
  1050. }
  1051. },
  1052. "mapper": {
  1053. "type": "code",
  1054. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  1055. },
  1056. "parser": {
  1057. "type": "code",
  1058. "value": "({\"textContent\":getAttr(\"textContent\")})"
  1059. },
  1060. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1061. "position": {
  1062. "type": "list<double>",
  1063. "value": [
  1064. 0,
  1065. 0
  1066. ]
  1067. },
  1068. "orientation": {
  1069. "type": "double",
  1070. "value": 0
  1071. },
  1072. "scale": {
  1073. "type": "list<double>",
  1074. "value": [
  1075. 1,
  1076. 1
  1077. ]
  1078. }
  1079. }
  1080. },
  1081. "edges": []
  1082. }
  1083. },
  1084. "$asuri": {
  1085. "type": "string",
  1086. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/9.instance"
  1087. },
  1088. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  1089. },
  1090. "10": {
  1091. "link-style": {
  1092. "type": "map<string,string>",
  1093. "value": {
  1094. "stroke": "#ff00ff",
  1095. "stroke-dasharray": "",
  1096. "stroke-opacity": 0.1,
  1097. "arrow-start": "none",
  1098. "arrow-end": "classic-wide-long"
  1099. }
  1100. },
  1101. "typename": {
  1102. "type": "string",
  1103. "value": "IconContentsLink"
  1104. },
  1105. "position": {
  1106. "type": "list<double>",
  1107. "value": [
  1108. "568,50%",
  1109. "155,50%"
  1110. ]
  1111. },
  1112. "orientation": {
  1113. "type": "double",
  1114. "value": 0
  1115. },
  1116. "scale": {
  1117. "type": "list<double>",
  1118. "value": [
  1119. 1,
  1120. 1
  1121. ]
  1122. },
  1123. "mapper": {
  1124. "type": "code",
  1125. "value": ""
  1126. },
  1127. "parser": {
  1128. "type": "code",
  1129. "value": ""
  1130. },
  1131. "$contents": {
  1132. "type": "map<string,*>",
  1133. "value": {
  1134. "nodes": {},
  1135. "edges": []
  1136. }
  1137. },
  1138. "$asuri": {
  1139. "type": "string",
  1140. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/10.instance"
  1141. },
  1142. "$segments": {
  1143. "type": "map<string,list<string>>",
  1144. "value": {
  1145. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/8.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance": "M549,149L568,155",
  1146. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/10.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/9.instance": "M568.0727020119255,155.0229585300817L586.999251774305,160.9997637182016"
  1147. }
  1148. },
  1149. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1150. },
  1151. "11": {
  1152. "typename": {
  1153. "type": "string",
  1154. "value": "IconIcon"
  1155. },
  1156. "position": {
  1157. "type": "list<double>",
  1158. "value": [
  1159. 801,
  1160. 175
  1161. ]
  1162. },
  1163. "orientation": {
  1164. "type": "double",
  1165. "value": 0
  1166. },
  1167. "scale": {
  1168. "type": "list<double>",
  1169. "value": [
  1170. 1,
  1171. 1
  1172. ]
  1173. },
  1174. "mapper": {
  1175. "type": "code",
  1176. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1177. },
  1178. "parser": {
  1179. "type": "code",
  1180. "value": "({'position':getAttr('position'),'orientation':getAttr('orientation'),'scale':getAttr('scale')})"
  1181. },
  1182. "$contents": {
  1183. "type": "map<string,*>",
  1184. "value": {
  1185. "nodes": {
  1186. "1": {
  1187. "width": {
  1188. "type": "double",
  1189. "value": "200"
  1190. },
  1191. "height": {
  1192. "type": "double",
  1193. "value": "150"
  1194. },
  1195. "cornerRadius": {
  1196. "type": "double",
  1197. "value": "10"
  1198. },
  1199. "style": {
  1200. "type": "map<string,string>",
  1201. "value": {
  1202. "stroke": "#000000",
  1203. "stroke-dasharray": "- ",
  1204. "fill": "#ffffff",
  1205. "fill-opacity": 0.75,
  1206. "stroke-width": 1
  1207. }
  1208. },
  1209. "mapper": {
  1210. "type": "code",
  1211. "value": ""
  1212. },
  1213. "parser": {
  1214. "type": "code",
  1215. "value": ""
  1216. },
  1217. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1218. "position": {
  1219. "type": "list<double>",
  1220. "value": [
  1221. 0,
  1222. 0
  1223. ]
  1224. },
  1225. "orientation": {
  1226. "type": "double",
  1227. "value": 0
  1228. },
  1229. "scale": {
  1230. "type": "list<double>",
  1231. "value": [
  1232. 1,
  1233. 1
  1234. ]
  1235. }
  1236. },
  1237. "2": {
  1238. "textContent": {
  1239. "type": "string",
  1240. "value": "GlobalActionIcon"
  1241. },
  1242. "style": {
  1243. "type": "map<string,string>",
  1244. "value": {
  1245. "stroke": "#000000",
  1246. "stroke-dasharray": "",
  1247. "fill": "#000000",
  1248. "fill-opacity": "1",
  1249. "font-size": "13px"
  1250. }
  1251. },
  1252. "mapper": {
  1253. "type": "code",
  1254. "value": "({\"textContent\":getAttr(\"typename\")})"
  1255. },
  1256. "parser": {
  1257. "type": "code",
  1258. "value": "({\"typename\":getAttr(\"textContent\")})"
  1259. },
  1260. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1261. "position": {
  1262. "type": "list<double>",
  1263. "value": [
  1264. 58,
  1265. 151
  1266. ]
  1267. },
  1268. "orientation": {
  1269. "type": "double",
  1270. "value": 0
  1271. },
  1272. "scale": {
  1273. "type": "list<double>",
  1274. "value": [
  1275. 1,
  1276. 1
  1277. ]
  1278. }
  1279. },
  1280. "3": {
  1281. "distance": {
  1282. "type": "double",
  1283. "value": 0
  1284. },
  1285. "alignment": {
  1286. "type": "ENUM(\"right\",\"left\",\"center\")",
  1287. "value": "center"
  1288. },
  1289. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1290. "position": {
  1291. "type": "list<double>",
  1292. "value": [
  1293. 93.49899850809561,
  1294. 137.49900000000002
  1295. ]
  1296. },
  1297. "orientation": {
  1298. "type": "double",
  1299. "value": 0
  1300. },
  1301. "scale": {
  1302. "type": "list<double>",
  1303. "value": [
  1304. 1,
  1305. 1
  1306. ]
  1307. },
  1308. "link-style": {
  1309. "type": "map<string,string>",
  1310. "value": {
  1311. "stroke": "#00ff00",
  1312. "stroke-dasharray": "",
  1313. "stroke-opacity": 1,
  1314. "arrow-start": "none",
  1315. "arrow-end": "classic-wide-long"
  1316. }
  1317. }
  1318. }
  1319. },
  1320. "edges": [
  1321. {
  1322. "src": "2",
  1323. "dest": 3
  1324. },
  1325. {
  1326. "src": 3,
  1327. "dest": "1"
  1328. }
  1329. ]
  1330. }
  1331. },
  1332. "$asuri": {
  1333. "type": "string",
  1334. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon/11.instance"
  1335. },
  1336. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon"
  1337. },
  1338. "12": {
  1339. "typename": {
  1340. "type": "string",
  1341. "value": "TextIcon"
  1342. },
  1343. "position": {
  1344. "type": "list<double>",
  1345. "value": [
  1346. 802,
  1347. 175
  1348. ]
  1349. },
  1350. "orientation": {
  1351. "type": "double",
  1352. "value": 0
  1353. },
  1354. "scale": {
  1355. "type": "list<double>",
  1356. "value": [
  1357. 1,
  1358. 1
  1359. ]
  1360. },
  1361. "mapper": {
  1362. "type": "code",
  1363. "value": ""
  1364. },
  1365. "parser": {
  1366. "type": "code",
  1367. "value": ""
  1368. },
  1369. "$contents": {
  1370. "type": "map<string,*>",
  1371. "value": {
  1372. "nodes": {
  1373. "21": {
  1374. "textContent": {
  1375. "type": "string",
  1376. "value": "ACTION"
  1377. },
  1378. "style": {
  1379. "type": "map<string,string>",
  1380. "value": {
  1381. "stroke": "#af00ff",
  1382. "stroke-dasharray": "",
  1383. "fill": "#af00ff",
  1384. "fill-opacity": 0.75,
  1385. "font-size": "20px",
  1386. "stroke-width": 1,
  1387. "arrow-start": "none",
  1388. "arrow-end": "none"
  1389. }
  1390. },
  1391. "mapper": {
  1392. "type": "code",
  1393. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  1394. },
  1395. "parser": {
  1396. "type": "code",
  1397. "value": "({\"textContent\":getAttr(\"textContent\")})"
  1398. },
  1399. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1400. "position": {
  1401. "type": "list<double>",
  1402. "value": [
  1403. 0,
  1404. 0
  1405. ]
  1406. },
  1407. "orientation": {
  1408. "type": "double",
  1409. "value": 0
  1410. },
  1411. "scale": {
  1412. "type": "list<double>",
  1413. "value": [
  1414. 1,
  1415. 1
  1416. ]
  1417. }
  1418. }
  1419. },
  1420. "edges": []
  1421. }
  1422. },
  1423. "$asuri": {
  1424. "type": "string",
  1425. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/12.instance"
  1426. },
  1427. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  1428. },
  1429. "13": {
  1430. "link-style": {
  1431. "type": "map<string,string>",
  1432. "value": {
  1433. "stroke": "#ff00ff",
  1434. "stroke-dasharray": "",
  1435. "stroke-opacity": 0.1,
  1436. "arrow-start": "none",
  1437. "arrow-end": "classic-wide-long"
  1438. }
  1439. },
  1440. "typename": {
  1441. "type": "string",
  1442. "value": "IconContentsLink"
  1443. },
  1444. "position": {
  1445. "type": "list<double>",
  1446. "value": [
  1447. "821.1463403026653,50%",
  1448. "181.0439020907996,50%"
  1449. ]
  1450. },
  1451. "orientation": {
  1452. "type": "double",
  1453. "value": 0
  1454. },
  1455. "scale": {
  1456. "type": "list<double>",
  1457. "value": [
  1458. 1,
  1459. 1
  1460. ]
  1461. },
  1462. "mapper": {
  1463. "type": "code",
  1464. "value": ""
  1465. },
  1466. "parser": {
  1467. "type": "code",
  1468. "value": ""
  1469. },
  1470. "$contents": {
  1471. "type": "map<string,*>",
  1472. "value": {
  1473. "nodes": {},
  1474. "edges": []
  1475. }
  1476. },
  1477. "$asuri": {
  1478. "type": "string",
  1479. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/13.instance"
  1480. },
  1481. "$segments": {
  1482. "type": "map<string,list<string>>",
  1483. "value": {
  1484. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/11.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/13.instance": "M801,175L821.1463403026653,181.0439020907996",
  1485. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/13.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/12.instance": "M821.0728136583281,181.02184409749842L840.9992872999521,186.99978618998566"
  1486. }
  1487. },
  1488. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1489. },
  1490. "14": {
  1491. "typename": {
  1492. "type": "string",
  1493. "value": "TextIcon"
  1494. },
  1495. "position": {
  1496. "type": "list<double>",
  1497. "value": [
  1498. 252,
  1499. 387
  1500. ]
  1501. },
  1502. "orientation": {
  1503. "type": "double",
  1504. "value": 0
  1505. },
  1506. "scale": {
  1507. "type": "list<double>",
  1508. "value": [
  1509. 1,
  1510. 1
  1511. ]
  1512. },
  1513. "mapper": {
  1514. "type": "code",
  1515. "value": ""
  1516. },
  1517. "parser": {
  1518. "type": "code",
  1519. "value": ""
  1520. },
  1521. "$contents": {
  1522. "type": "map<string,*>",
  1523. "value": {
  1524. "nodes": {
  1525. "21": {
  1526. "textContent": {
  1527. "type": "string",
  1528. "value": "<coded>"
  1529. },
  1530. "style": {
  1531. "type": "map<string,string>",
  1532. "value": {
  1533. "stroke": "#0000ff",
  1534. "fill": "#000000",
  1535. "fill-opacity": 0.75,
  1536. "font-size": "20px"
  1537. }
  1538. },
  1539. "mapper": {
  1540. "type": "code",
  1541. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  1542. },
  1543. "parser": {
  1544. "type": "code",
  1545. "value": "({\"textContent\":getAttr(\"textContent\")})"
  1546. },
  1547. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1548. "position": {
  1549. "type": "list<double>",
  1550. "value": [
  1551. 0,
  1552. 0
  1553. ]
  1554. },
  1555. "orientation": {
  1556. "type": "double",
  1557. "value": 0
  1558. },
  1559. "scale": {
  1560. "type": "list<double>",
  1561. "value": [
  1562. 1,
  1563. 1
  1564. ]
  1565. }
  1566. }
  1567. },
  1568. "edges": []
  1569. }
  1570. },
  1571. "$asuri": {
  1572. "type": "string",
  1573. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/14.instance"
  1574. },
  1575. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  1576. },
  1577. "15": {
  1578. "link-style": {
  1579. "type": "map<string,string>",
  1580. "value": {
  1581. "stroke": "#ff00ff",
  1582. "stroke-dasharray": "",
  1583. "stroke-opacity": 0.1,
  1584. "arrow-start": "none",
  1585. "arrow-end": "classic-wide-long"
  1586. }
  1587. },
  1588. "typename": {
  1589. "type": "string",
  1590. "value": "IconContentsLink"
  1591. },
  1592. "position": {
  1593. "type": "list<double>",
  1594. "value": [
  1595. 263.24899850809555,
  1596. 407.999
  1597. ]
  1598. },
  1599. "orientation": {
  1600. "type": "double",
  1601. "value": 0
  1602. },
  1603. "scale": {
  1604. "type": "list<double>",
  1605. "value": [
  1606. 1,
  1607. 1
  1608. ]
  1609. },
  1610. "mapper": {
  1611. "type": "code",
  1612. "value": ""
  1613. },
  1614. "parser": {
  1615. "type": "code",
  1616. "value": ""
  1617. },
  1618. "$contents": {
  1619. "type": "map<string,*>",
  1620. "value": {
  1621. "nodes": {},
  1622. "edges": []
  1623. }
  1624. },
  1625. "$asuri": {
  1626. "type": "string",
  1627. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/15.instance"
  1628. },
  1629. "$segments": {
  1630. "type": "map<string,list<string>>",
  1631. "value": {
  1632. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/LinkIcon/1.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/15.instance": "M249.99999999999997,404L263.25,408",
  1633. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/15.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/14.instance": "M263.25,408L277.5,399"
  1634. }
  1635. },
  1636. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1637. },
  1638. "16": {
  1639. "typename": {
  1640. "type": "string",
  1641. "value": "TextIcon"
  1642. },
  1643. "position": {
  1644. "type": "list<double>",
  1645. "value": [
  1646. 256,
  1647. 148
  1648. ]
  1649. },
  1650. "orientation": {
  1651. "type": "double",
  1652. "value": 0
  1653. },
  1654. "scale": {
  1655. "type": "list<double>",
  1656. "value": [
  1657. 1,
  1658. 1
  1659. ]
  1660. },
  1661. "mapper": {
  1662. "type": "code",
  1663. "value": ""
  1664. },
  1665. "parser": {
  1666. "type": "code",
  1667. "value": ""
  1668. },
  1669. "$contents": {
  1670. "type": "map<string,*>",
  1671. "value": {
  1672. "nodes": {
  1673. "21": {
  1674. "textContent": {
  1675. "type": "string",
  1676. "value": "T..."
  1677. },
  1678. "style": {
  1679. "type": "map<string,string>",
  1680. "value": {
  1681. "stroke": "#000000",
  1682. "stroke-dasharray": "",
  1683. "fill": "#ffffff",
  1684. "fill-opacity": 0.75,
  1685. "font-size": "13px",
  1686. "stroke-width": 1,
  1687. "arrow-start": "none",
  1688. "arrow-end": "none"
  1689. }
  1690. },
  1691. "mapper": {
  1692. "type": "code",
  1693. "value": "({\"textContent\":getAttr(\"textContent\"), \"style\":getAttr(\"style\")})"
  1694. },
  1695. "parser": {
  1696. "type": "code",
  1697. "value": "({\"textContent\":getAttr(\"textContent\")})"
  1698. },
  1699. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1700. "position": {
  1701. "type": "list<double>",
  1702. "value": [
  1703. 0,
  1704. 0
  1705. ]
  1706. },
  1707. "orientation": {
  1708. "type": "double",
  1709. "value": 0
  1710. },
  1711. "scale": {
  1712. "type": "list<double>",
  1713. "value": [
  1714. 1,
  1715. 1
  1716. ]
  1717. }
  1718. }
  1719. },
  1720. "edges": []
  1721. }
  1722. },
  1723. "$asuri": {
  1724. "type": "string",
  1725. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text/16.instance"
  1726. },
  1727. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon"
  1728. },
  1729. "17": {
  1730. "link-style": {
  1731. "type": "map<string,string>",
  1732. "value": {
  1733. "stroke": "#00ffff",
  1734. "stroke-dasharray": "",
  1735. "stroke-opacity": 0.1,
  1736. "arrow-start": "none",
  1737. "arrow-end": "classic-wide-long"
  1738. }
  1739. },
  1740. "typename": {
  1741. "type": "string",
  1742. "value": "ContainLink"
  1743. },
  1744. "position": {
  1745. "type": "list<double>",
  1746. "value": [
  1747. 258.4989985080956,
  1748. 140.49900000000002
  1749. ]
  1750. },
  1751. "orientation": {
  1752. "type": "double",
  1753. "value": 0
  1754. },
  1755. "scale": {
  1756. "type": "list<double>",
  1757. "value": [
  1758. 1,
  1759. 1
  1760. ]
  1761. },
  1762. "mapper": {
  1763. "type": "code",
  1764. "value": ""
  1765. },
  1766. "parser": {
  1767. "type": "code",
  1768. "value": ""
  1769. },
  1770. "$contents": {
  1771. "type": "map<string,*>",
  1772. "value": {
  1773. "nodes": {},
  1774. "edges": []
  1775. }
  1776. },
  1777. "$asuri": {
  1778. "type": "string",
  1779. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain/17.instance"
  1780. },
  1781. "$segments": {
  1782. "type": "map<string,list<string>>",
  1783. "value": {
  1784. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/RectangleIcon/2.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/17.instance": "M250.99999999908528,125.00000000000003L258.5,140.50000000000003",
  1785. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/17.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/16.instance": "M258.53289350487967,140.56797991008457L265.99961148992463,155.99919707917775"
  1786. }
  1787. },
  1788. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink"
  1789. },
  1790. "18": {
  1791. "link-style": {
  1792. "type": "map<string,string>",
  1793. "value": {
  1794. "stroke": "#ff00ff",
  1795. "stroke-dasharray": "",
  1796. "stroke-opacity": 0.1,
  1797. "arrow-start": "none",
  1798. "arrow-end": "classic-wide-long"
  1799. }
  1800. },
  1801. "typename": {
  1802. "type": "string",
  1803. "value": "IconContentsLink"
  1804. },
  1805. "position": {
  1806. "type": "list<double>",
  1807. "value": [
  1808. "251.7494992540478,50%",
  1809. "133.2495,50%"
  1810. ]
  1811. },
  1812. "orientation": {
  1813. "type": "double",
  1814. "value": 0
  1815. },
  1816. "scale": {
  1817. "type": "list<double>",
  1818. "value": [
  1819. 1,
  1820. 1
  1821. ]
  1822. },
  1823. "mapper": {
  1824. "type": "code",
  1825. "value": ""
  1826. },
  1827. "parser": {
  1828. "type": "code",
  1829. "value": ""
  1830. },
  1831. "$contents": {
  1832. "type": "map<string,*>",
  1833. "value": {
  1834. "nodes": {},
  1835. "edges": []
  1836. }
  1837. },
  1838. "$asuri": {
  1839. "type": "string",
  1840. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/18.instance"
  1841. },
  1842. "$segments": {
  1843. "type": "map<string,list<string>>",
  1844. "value": {
  1845. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/18.instance": "M249,125L251.7494992540478,133.2495",
  1846. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/18.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/ContainLink/17.instance": "M251.7494992540478,133.2495L254.4989985080956,141.49900000000002"
  1847. }
  1848. },
  1849. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1850. },
  1851. "19": {
  1852. "link-style": {
  1853. "type": "map<string,string>",
  1854. "value": {
  1855. "stroke": "#ff00ff",
  1856. "stroke-dasharray": "",
  1857. "stroke-opacity": 0.1,
  1858. "arrow-start": "none",
  1859. "arrow-end": "classic-wide-long"
  1860. }
  1861. },
  1862. "typename": {
  1863. "type": "string",
  1864. "value": "IconContentsLink"
  1865. },
  1866. "position": {
  1867. "type": "list<double>",
  1868. "value": [
  1869. "255.5573522796662,50%",
  1870. "141.14117484225523,50%"
  1871. ]
  1872. },
  1873. "orientation": {
  1874. "type": "double",
  1875. "value": 0
  1876. },
  1877. "scale": {
  1878. "type": "list<double>",
  1879. "value": [
  1880. 1,
  1881. 1
  1882. ]
  1883. },
  1884. "mapper": {
  1885. "type": "code",
  1886. "value": ""
  1887. },
  1888. "parser": {
  1889. "type": "code",
  1890. "value": ""
  1891. },
  1892. "$contents": {
  1893. "type": "map<string,*>",
  1894. "value": {
  1895. "nodes": {},
  1896. "edges": []
  1897. }
  1898. },
  1899. "$asuri": {
  1900. "type": "string",
  1901. "value": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents/19.instance"
  1902. },
  1903. "$segments": {
  1904. "type": "map<string,list<string>>",
  1905. "value": {
  1906. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconIcon/0.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/19.instance": "M249,125L255.5573522796662,141.14117484225523",
  1907. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink/19.instance--/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/TextIcon/16.instance": "M255.52850770422899,141.07017281040982L265.999663291268,155.999171178506"
  1908. }
  1909. },
  1910. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons/IconContentsLink"
  1911. }
  1912. },
  1913. "edges": [],
  1914. "metamodels": [
  1915. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax.defaultIcons"
  1916. ]
  1917. },
  1918. "asm": {
  1919. "nodes": {
  1920. "0": {
  1921. "typename": {
  1922. "type": "string",
  1923. "value": "EntityIcon"
  1924. },
  1925. "position": {
  1926. "type": "list<double>",
  1927. "value": [
  1928. 249,
  1929. 125
  1930. ]
  1931. },
  1932. "orientation": {
  1933. "type": "double",
  1934. "value": 0
  1935. },
  1936. "scale": {
  1937. "type": "list<double>",
  1938. "value": [
  1939. 1.3401,
  1940. 1.3401
  1941. ]
  1942. },
  1943. "mapper": {
  1944. "type": "code",
  1945. "value": ""
  1946. },
  1947. "parser": {
  1948. "type": "code",
  1949. "value": ""
  1950. },
  1951. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  1952. },
  1953. "1": {
  1954. "link-style": {
  1955. "type": "map<string,string>",
  1956. "value": {
  1957. "stroke": "#0000ff",
  1958. "stroke-dasharray": "",
  1959. "stroke-opacity": 1,
  1960. "stroke-width": 2,
  1961. "arrow-start": "none",
  1962. "arrow-end": "classic-wide-long"
  1963. }
  1964. },
  1965. "typename": {
  1966. "type": "string",
  1967. "value": "RelationshipLink"
  1968. },
  1969. "position": {
  1970. "type": "list<double>",
  1971. "value": [
  1972. 250,
  1973. 403
  1974. ]
  1975. },
  1976. "orientation": {
  1977. "type": "double",
  1978. "value": 0
  1979. },
  1980. "scale": {
  1981. "type": "list<double>",
  1982. "value": [
  1983. 1,
  1984. 1
  1985. ]
  1986. },
  1987. "mapper": {
  1988. "type": "code",
  1989. "value": ""
  1990. },
  1991. "parser": {
  1992. "type": "code",
  1993. "value": ""
  1994. },
  1995. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Link"
  1996. },
  1997. "2": {
  1998. "width": {
  1999. "type": "double",
  2000. "value": 200
  2001. },
  2002. "height": {
  2003. "type": "double",
  2004. "value": 125
  2005. },
  2006. "cornerRadius": {
  2007. "type": "double",
  2008. "value": 5
  2009. },
  2010. "style": {
  2011. "type": "map<string,string>",
  2012. "value": {
  2013. "stroke": "#ff3000",
  2014. "stroke-dasharray": "",
  2015. "fill": "#ff3000",
  2016. "fill-opacity": 0.25,
  2017. "font-size": "20px",
  2018. "stroke-width": 2,
  2019. "arrow-start": "none",
  2020. "arrow-end": "none"
  2021. }
  2022. },
  2023. "mapper": {
  2024. "type": "code",
  2025. "value": ""
  2026. },
  2027. "parser": {
  2028. "type": "code",
  2029. "value": ""
  2030. },
  2031. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle"
  2032. },
  2033. "3": {
  2034. "textContent": {
  2035. "type": "string",
  2036. "value": "<coded>"
  2037. },
  2038. "style": {
  2039. "type": "map<string,string>",
  2040. "value": {
  2041. "stroke": "#000000",
  2042. "stroke-dasharray": "",
  2043. "fill": "#ffffff",
  2044. "fill-opacity": 0.75,
  2045. "font-size": "20px",
  2046. "stroke-width": 1,
  2047. "arrow-start": "none",
  2048. "arrow-end": "none"
  2049. }
  2050. },
  2051. "mapper": {
  2052. "type": "code",
  2053. "value": "({'textContent': getAttr('name')})\n\n\n\n\n\n\n\n"
  2054. },
  2055. "parser": {
  2056. "type": "code",
  2057. "value": ""
  2058. },
  2059. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2060. },
  2061. "4": {
  2062. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  2063. },
  2064. "5": {
  2065. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2066. },
  2067. "6": {
  2068. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2069. },
  2070. "7": {
  2071. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2072. },
  2073. "8": {
  2074. "typename": {
  2075. "type": "string",
  2076. "value": "GlobalConstraintIcon"
  2077. },
  2078. "position": {
  2079. "type": "list<double>",
  2080. "value": [
  2081. 549,
  2082. 149
  2083. ]
  2084. },
  2085. "orientation": {
  2086. "type": "double",
  2087. "value": 0
  2088. },
  2089. "scale": {
  2090. "type": "list<double>",
  2091. "value": [
  2092. 1,
  2093. 1
  2094. ]
  2095. },
  2096. "mapper": {
  2097. "type": "code",
  2098. "value": ""
  2099. },
  2100. "parser": {
  2101. "type": "code",
  2102. "value": ""
  2103. },
  2104. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  2105. },
  2106. "9": {
  2107. "textContent": {
  2108. "type": "string",
  2109. "value": "CONSTRAINT"
  2110. },
  2111. "style": {
  2112. "type": "map<string,string>",
  2113. "value": {
  2114. "stroke": "#00ff70",
  2115. "stroke-dasharray": "",
  2116. "fill": "#00ff70",
  2117. "fill-opacity": 0.75,
  2118. "font-size": "20px",
  2119. "stroke-width": 1,
  2120. "arrow-start": "none",
  2121. "arrow-end": "none"
  2122. }
  2123. },
  2124. "mapper": {
  2125. "type": "code",
  2126. "value": "({'textContent' : 'check '+getAttr('name')+' on '+getAttr('event')})\n"
  2127. },
  2128. "parser": {
  2129. "type": "code",
  2130. "value": ""
  2131. },
  2132. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2133. },
  2134. "10": {
  2135. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2136. },
  2137. "11": {
  2138. "typename": {
  2139. "type": "string",
  2140. "value": "GlobalActionIcon"
  2141. },
  2142. "position": {
  2143. "type": "list<double>",
  2144. "value": [
  2145. 801,
  2146. 175
  2147. ]
  2148. },
  2149. "orientation": {
  2150. "type": "double",
  2151. "value": 0
  2152. },
  2153. "scale": {
  2154. "type": "list<double>",
  2155. "value": [
  2156. 1,
  2157. 1
  2158. ]
  2159. },
  2160. "mapper": {
  2161. "type": "code",
  2162. "value": ""
  2163. },
  2164. "parser": {
  2165. "type": "code",
  2166. "value": ""
  2167. },
  2168. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Icon"
  2169. },
  2170. "12": {
  2171. "textContent": {
  2172. "type": "string",
  2173. "value": "ACTION"
  2174. },
  2175. "style": {
  2176. "type": "map<string,string>",
  2177. "value": {
  2178. "stroke": "#af00ff",
  2179. "stroke-dasharray": "",
  2180. "fill": "#af00ff",
  2181. "fill-opacity": 0.75,
  2182. "font-size": "20px",
  2183. "stroke-width": 1,
  2184. "arrow-start": "none",
  2185. "arrow-end": "none"
  2186. }
  2187. },
  2188. "mapper": {
  2189. "type": "code",
  2190. "value": "({'textContent' : 'do '+getAttr('name')+' on '+getAttr('event')})\n"
  2191. },
  2192. "parser": {
  2193. "type": "code",
  2194. "value": ""
  2195. },
  2196. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2197. },
  2198. "13": {
  2199. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2200. },
  2201. "14": {
  2202. "textContent": {
  2203. "type": "string",
  2204. "value": "<coded>"
  2205. },
  2206. "style": {
  2207. "type": "map<string,string>",
  2208. "value": {
  2209. "stroke": "#0000ff",
  2210. "fill": "#000000",
  2211. "fill-opacity": 0.75,
  2212. "font-size": "20px"
  2213. }
  2214. },
  2215. "mapper": {
  2216. "type": "code",
  2217. "value": "({'textContent':getAttr('name')})"
  2218. },
  2219. "parser": {
  2220. "type": "code",
  2221. "value": "({'name':getAttr('textContent')})"
  2222. },
  2223. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2224. },
  2225. "15": {
  2226. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2227. },
  2228. "16": {
  2229. "textContent": {
  2230. "type": "string",
  2231. "value": "T..."
  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. "font-size": "13px",
  2241. "stroke-width": 1,
  2242. "arrow-start": "none",
  2243. "arrow-end": "none"
  2244. }
  2245. },
  2246. "mapper": {
  2247. "type": "code",
  2248. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  2249. },
  2250. "parser": {
  2251. "type": "code",
  2252. "value": ""
  2253. },
  2254. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2255. },
  2256. "17": {
  2257. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain"
  2258. },
  2259. "18": {
  2260. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2261. },
  2262. "19": {
  2263. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/IconContents"
  2264. }
  2265. },
  2266. "edges": [
  2267. {
  2268. "src": "2",
  2269. "dest": "4"
  2270. },
  2271. {
  2272. "src": "4",
  2273. "dest": "3"
  2274. },
  2275. {
  2276. "src": "0",
  2277. "dest": "5"
  2278. },
  2279. {
  2280. "src": "5",
  2281. "dest": "2"
  2282. },
  2283. {
  2284. "src": "0",
  2285. "dest": "6"
  2286. },
  2287. {
  2288. "src": "6",
  2289. "dest": "4"
  2290. },
  2291. {
  2292. "src": "0",
  2293. "dest": "7"
  2294. },
  2295. {
  2296. "src": "7",
  2297. "dest": "3"
  2298. },
  2299. {
  2300. "src": "8",
  2301. "dest": "10"
  2302. },
  2303. {
  2304. "src": "10",
  2305. "dest": "9"
  2306. },
  2307. {
  2308. "src": "11",
  2309. "dest": "13"
  2310. },
  2311. {
  2312. "src": "13",
  2313. "dest": "12"
  2314. },
  2315. {
  2316. "src": "1",
  2317. "dest": "15"
  2318. },
  2319. {
  2320. "src": "15",
  2321. "dest": "14"
  2322. },
  2323. {
  2324. "src": "2",
  2325. "dest": "17"
  2326. },
  2327. {
  2328. "src": "17",
  2329. "dest": "16"
  2330. },
  2331. {
  2332. "src": "0",
  2333. "dest": "18"
  2334. },
  2335. {
  2336. "src": "18",
  2337. "dest": "17"
  2338. },
  2339. {
  2340. "src": "0",
  2341. "dest": "19"
  2342. },
  2343. {
  2344. "src": "19",
  2345. "dest": "16"
  2346. }
  2347. ],
  2348. "metamodels": [
  2349. "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax"
  2350. ]
  2351. }
  2352. }