R_CompileCanvas.model 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835
  1. {
  2. "csm": {
  3. "nodes": {
  4. "7": {
  5. "typename": {
  6. "type": "string",
  7. "value": "NACIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 162,
  13. 182
  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. "1": {
  40. "width": {
  41. "type": "double",
  42. "value": "400"
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": "500"
  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. -1
  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. },
  91. "edges": []
  92. }
  93. },
  94. "$asuri": {
  95. "type": "string",
  96. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/NAC/7.instance"
  97. },
  98. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon"
  99. },
  100. "8": {
  101. "typename": {
  102. "type": "string",
  103. "value": "LHSIcon"
  104. },
  105. "position": {
  106. "type": "list<double>",
  107. "value": [
  108. 570,
  109. 181
  110. ]
  111. },
  112. "orientation": {
  113. "type": "double",
  114. "value": 0
  115. },
  116. "scale": {
  117. "type": "list<double>",
  118. "value": [
  119. 1,
  120. 1
  121. ]
  122. },
  123. "mapper": {
  124. "type": "code",
  125. "value": ""
  126. },
  127. "parser": {
  128. "type": "code",
  129. "value": ""
  130. },
  131. "$contents": {
  132. "type": "map<string,*>",
  133. "value": {
  134. "nodes": {
  135. "4": {
  136. "segments": {
  137. "type": "string",
  138. "value": "m0,0 l350,0 l100,250 l-100,250 l-350,0z"
  139. },
  140. "style": {
  141. "type": "map<string,string>",
  142. "value": {
  143. "stroke": "#000000",
  144. "stroke-dasharray": "",
  145. "fill": "#ffffff",
  146. "fill-opacity": 0.75,
  147. "stroke-width": 2,
  148. "arrow-start": "none",
  149. "arrow-end": "none"
  150. }
  151. },
  152. "mapper": {
  153. "type": "code",
  154. "value": ""
  155. },
  156. "parser": {
  157. "type": "code",
  158. "value": ""
  159. },
  160. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  161. "position": {
  162. "type": "list<double>",
  163. "value": [
  164. 1,
  165. 0
  166. ]
  167. },
  168. "orientation": {
  169. "type": "double",
  170. "value": 0
  171. },
  172. "scale": {
  173. "type": "list<double>",
  174. "value": [
  175. 1,
  176. 1
  177. ]
  178. }
  179. }
  180. },
  181. "edges": []
  182. }
  183. },
  184. "$asuri": {
  185. "type": "string",
  186. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS/8.instance"
  187. },
  188. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon"
  189. },
  190. "9": {
  191. "typename": {
  192. "type": "string",
  193. "value": "RHSIcon"
  194. },
  195. "position": {
  196. "type": "list<double>",
  197. "value": [
  198. 930,
  199. 180
  200. ]
  201. },
  202. "orientation": {
  203. "type": "double",
  204. "value": 0
  205. },
  206. "scale": {
  207. "type": "list<double>",
  208. "value": [
  209. 1,
  210. 1
  211. ]
  212. },
  213. "mapper": {
  214. "type": "code",
  215. "value": ""
  216. },
  217. "parser": {
  218. "type": "code",
  219. "value": ""
  220. },
  221. "$contents": {
  222. "type": "map<string,*>",
  223. "value": {
  224. "nodes": {
  225. "7": {
  226. "segments": {
  227. "type": "string",
  228. "value": "m0,0 l450,0 l0,500 l-450,0 l100,-250z"
  229. },
  230. "style": {
  231. "type": "map<string,string>",
  232. "value": {
  233. "stroke": "#000000",
  234. "stroke-dasharray": "",
  235. "fill": "#ffffff",
  236. "fill-opacity": 0.75,
  237. "stroke-width": 2,
  238. "arrow-start": "none",
  239. "arrow-end": "none"
  240. }
  241. },
  242. "mapper": {
  243. "type": "code",
  244. "value": ""
  245. },
  246. "parser": {
  247. "type": "code",
  248. "value": ""
  249. },
  250. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  251. "position": {
  252. "type": "list<double>",
  253. "value": [
  254. 0,
  255. 0
  256. ]
  257. },
  258. "orientation": {
  259. "type": "double",
  260. "value": 0
  261. },
  262. "scale": {
  263. "type": "list<double>",
  264. "value": [
  265. 1,
  266. 1
  267. ]
  268. }
  269. }
  270. },
  271. "edges": []
  272. }
  273. },
  274. "$asuri": {
  275. "type": "string",
  276. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS/9.instance"
  277. },
  278. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon"
  279. },
  280. "10": {
  281. "typename": {
  282. "type": "string",
  283. "value": "CanvasIcon"
  284. },
  285. "position": {
  286. "type": "list<double>",
  287. "value": [
  288. 676,
  289. 339
  290. ]
  291. },
  292. "orientation": {
  293. "type": "double",
  294. "value": 0
  295. },
  296. "scale": {
  297. "type": "list<double>",
  298. "value": [
  299. 1,
  300. 1
  301. ]
  302. },
  303. "mapper": {
  304. "type": "code",
  305. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  306. },
  307. "parser": {
  308. "type": "code",
  309. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  310. },
  311. "$contents": {
  312. "type": "map<string,*>",
  313. "value": {
  314. "nodes": {
  315. "13": {
  316. "width": {
  317. "type": "double",
  318. "value": 175
  319. },
  320. "height": {
  321. "type": "double",
  322. "value": 175
  323. },
  324. "cornerRadius": {
  325. "type": "double",
  326. "value": 10
  327. },
  328. "style": {
  329. "type": "map<string,string>",
  330. "value": {
  331. "fill": "#ffffff",
  332. "fill-opacity": 0.75,
  333. "font-size": "20px",
  334. "stroke-width": 3
  335. }
  336. },
  337. "mapper": {
  338. "type": "code",
  339. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  340. },
  341. "parser": {
  342. "type": "code",
  343. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  344. },
  345. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  346. "position": {
  347. "type": "list<double>",
  348. "value": [
  349. 1,
  350. 0
  351. ]
  352. },
  353. "orientation": {
  354. "type": "double",
  355. "value": 0
  356. },
  357. "scale": {
  358. "type": "list<double>",
  359. "value": [
  360. 1,
  361. 1
  362. ]
  363. }
  364. },
  365. "__pLabelText": {
  366. "position": {
  367. "type": "list<double>",
  368. "value": [
  369. 0,
  370. 0
  371. ]
  372. },
  373. "orientation": {
  374. "type": "double",
  375. "value": 0
  376. },
  377. "scale": {
  378. "type": "list<double>",
  379. "value": [
  380. 1,
  381. 1
  382. ]
  383. },
  384. "textContent": {
  385. "type": "string",
  386. "value": "0"
  387. },
  388. "style": {
  389. "type": "map<string,string>",
  390. "value": {
  391. "stroke": "#6000ff",
  392. "fill": "#6000ff",
  393. "font-size": "15px",
  394. "opacity": "1"
  395. }
  396. },
  397. "mapper": {
  398. "type": "code",
  399. "value": "({'textContent':getAttr('__pLabel')})"
  400. },
  401. "parser": {
  402. "type": "code",
  403. "value": "({'__pLabel':getAttr('textContent')})"
  404. },
  405. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  406. }
  407. },
  408. "edges": []
  409. }
  410. },
  411. "$asuri": {
  412. "type": "string",
  413. "value": "/Formalisms/GUI/GUI.pattern/__pCanvas/10.instance"
  414. },
  415. "$type": "/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon"
  416. },
  417. "11": {
  418. "link-style": {
  419. "type": "map<string,string>",
  420. "value": {
  421. "stroke": "#00ff00",
  422. "stroke-dasharray": "",
  423. "stroke-opacity": 0.2,
  424. "stroke-width": 1,
  425. "arrow-start": "none",
  426. "arrow-end": "classic-wide-long"
  427. }
  428. },
  429. "typename": {
  430. "type": "string",
  431. "value": "PatternContentsLink"
  432. },
  433. "position": {
  434. "type": "list<double>",
  435. "value": [
  436. "667.5927884488291,50%",
  437. "303.8680288299873,50%"
  438. ]
  439. },
  440. "orientation": {
  441. "type": "double",
  442. "value": 0
  443. },
  444. "scale": {
  445. "type": "list<double>",
  446. "value": [
  447. 1,
  448. 1
  449. ]
  450. },
  451. "mapper": {
  452. "type": "code",
  453. "value": ""
  454. },
  455. "parser": {
  456. "type": "code",
  457. "value": ""
  458. },
  459. "$contents": {
  460. "type": "map<string,*>",
  461. "value": {
  462. "nodes": {},
  463. "edges": []
  464. }
  465. },
  466. "$asuri": {
  467. "type": "string",
  468. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/11.instance"
  469. },
  470. "$segments": {
  471. "type": "map<string,list<string>>",
  472. "value": {
  473. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/8.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/11.instance": "M571,181L667.5927884488291,303.8680288299873",
  474. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/11.instance--/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon/10.instance": "M667.5462157898497,303.808787442529L763.9994650251053,426.4993195008463"
  475. }
  476. },
  477. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  478. },
  479. "12": {
  480. "typename": {
  481. "type": "string",
  482. "value": "FileIcon"
  483. },
  484. "position": {
  485. "type": "list<double>",
  486. "value": [
  487. 306,
  488. 480
  489. ]
  490. },
  491. "orientation": {
  492. "type": "double",
  493. "value": 0
  494. },
  495. "scale": {
  496. "type": "list<double>",
  497. "value": [
  498. 1,
  499. 1
  500. ]
  501. },
  502. "mapper": {
  503. "type": "code",
  504. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  505. },
  506. "parser": {
  507. "type": "code",
  508. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  509. },
  510. "$contents": {
  511. "type": "map<string,*>",
  512. "value": {
  513. "nodes": {
  514. "22": {
  515. "segments": {
  516. "type": "string",
  517. "value": "m0,0 l60,0 l30,30 l0,90 l-90,0 l0,-120 l60,0 l0,30 l30,0"
  518. },
  519. "style": {
  520. "type": "map<string,string>",
  521. "value": {
  522. "stroke": "#000000",
  523. "stroke-dasharray": "",
  524. "fill": "#ffffff",
  525. "fill-opacity": 0.75,
  526. "font-size": "20px",
  527. "stroke-width": 3,
  528. "arrow-start": "none",
  529. "arrow-end": "none"
  530. }
  531. },
  532. "mapper": {
  533. "type": "code",
  534. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  535. },
  536. "parser": {
  537. "type": "code",
  538. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  539. },
  540. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  541. "position": {
  542. "type": "list<double>",
  543. "value": [
  544. 2,
  545. 1
  546. ]
  547. },
  548. "orientation": {
  549. "type": "double",
  550. "value": 0
  551. },
  552. "scale": {
  553. "type": "list<double>",
  554. "value": [
  555. 1,
  556. 1
  557. ]
  558. }
  559. },
  560. "23": {
  561. "textContent": {
  562. "type": "string",
  563. "value": "*.xml"
  564. },
  565. "style": {
  566. "type": "map<string,string>",
  567. "value": {
  568. "stroke": "#000000",
  569. "fill": "#ffffff",
  570. "fill-opacity": 0.75,
  571. "font-size": "13px"
  572. }
  573. },
  574. "mapper": {
  575. "type": "code",
  576. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  577. },
  578. "parser": {
  579. "type": "code",
  580. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  581. },
  582. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  583. "position": {
  584. "type": "list<double>",
  585. "value": [
  586. 4,
  587. 126
  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. },
  602. "24": {
  603. "distance": {
  604. "type": "double",
  605. "value": 5
  606. },
  607. "alignment": {
  608. "type": "ENUM(\"right\",\"left\",\"center\")",
  609. "value": "\"left\""
  610. },
  611. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  612. "position": {
  613. "type": "list<double>",
  614. "value": [
  615. 27.99899850809561,
  616. 117.99900000000002
  617. ]
  618. },
  619. "orientation": {
  620. "type": "double",
  621. "value": 0
  622. },
  623. "scale": {
  624. "type": "list<double>",
  625. "value": [
  626. 1,
  627. 1
  628. ]
  629. },
  630. "link-style": {
  631. "type": "map<string,string>",
  632. "value": {
  633. "stroke": "#00ff00",
  634. "stroke-dasharray": "",
  635. "stroke-opacity": 1,
  636. "arrow-start": "none",
  637. "arrow-end": "classic-wide-long"
  638. }
  639. }
  640. },
  641. "__pLabelText": {
  642. "position": {
  643. "type": "list<double>",
  644. "value": [
  645. 0,
  646. 0
  647. ]
  648. },
  649. "orientation": {
  650. "type": "double",
  651. "value": 0
  652. },
  653. "scale": {
  654. "type": "list<double>",
  655. "value": [
  656. 1,
  657. 1
  658. ]
  659. },
  660. "textContent": {
  661. "type": "string",
  662. "value": "2"
  663. },
  664. "style": {
  665. "type": "map<string,string>",
  666. "value": {
  667. "stroke": "#6000ff",
  668. "fill": "#6000ff",
  669. "font-size": "15px",
  670. "opacity": "1"
  671. }
  672. },
  673. "mapper": {
  674. "type": "code",
  675. "value": "({'textContent':getAttr('__pLabel')})"
  676. },
  677. "parser": {
  678. "type": "code",
  679. "value": "({'__pLabel':getAttr('textContent')})"
  680. },
  681. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  682. }
  683. },
  684. "edges": [
  685. {
  686. "src": "23",
  687. "dest": "24"
  688. },
  689. {
  690. "src": "24",
  691. "dest": "22"
  692. }
  693. ]
  694. }
  695. },
  696. "$asuri": {
  697. "type": "string",
  698. "value": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile/12.instance"
  699. },
  700. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon"
  701. },
  702. "13": {
  703. "typename": {
  704. "type": "string",
  705. "value": "CanvasIcon"
  706. },
  707. "position": {
  708. "type": "list<double>",
  709. "value": [
  710. 263,
  711. 259
  712. ]
  713. },
  714. "orientation": {
  715. "type": "double",
  716. "value": 0
  717. },
  718. "scale": {
  719. "type": "list<double>",
  720. "value": [
  721. 1,
  722. 1
  723. ]
  724. },
  725. "mapper": {
  726. "type": "code",
  727. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  728. },
  729. "parser": {
  730. "type": "code",
  731. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  732. },
  733. "$contents": {
  734. "type": "map<string,*>",
  735. "value": {
  736. "nodes": {
  737. "13": {
  738. "width": {
  739. "type": "double",
  740. "value": 175
  741. },
  742. "height": {
  743. "type": "double",
  744. "value": 175
  745. },
  746. "cornerRadius": {
  747. "type": "double",
  748. "value": 10
  749. },
  750. "style": {
  751. "type": "map<string,string>",
  752. "value": {
  753. "fill": "#ffffff",
  754. "fill-opacity": 0.75,
  755. "font-size": "20px",
  756. "stroke-width": 3
  757. }
  758. },
  759. "mapper": {
  760. "type": "code",
  761. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  762. },
  763. "parser": {
  764. "type": "code",
  765. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  766. },
  767. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  768. "position": {
  769. "type": "list<double>",
  770. "value": [
  771. 1,
  772. 0
  773. ]
  774. },
  775. "orientation": {
  776. "type": "double",
  777. "value": 0
  778. },
  779. "scale": {
  780. "type": "list<double>",
  781. "value": [
  782. 1,
  783. 1
  784. ]
  785. }
  786. },
  787. "__pLabelText": {
  788. "position": {
  789. "type": "list<double>",
  790. "value": [
  791. 0,
  792. 0
  793. ]
  794. },
  795. "orientation": {
  796. "type": "double",
  797. "value": 0
  798. },
  799. "scale": {
  800. "type": "list<double>",
  801. "value": [
  802. 1,
  803. 1
  804. ]
  805. },
  806. "textContent": {
  807. "type": "string",
  808. "value": "0"
  809. },
  810. "style": {
  811. "type": "map<string,string>",
  812. "value": {
  813. "stroke": "#6000ff",
  814. "fill": "#6000ff",
  815. "font-size": "15px",
  816. "opacity": "1"
  817. }
  818. },
  819. "mapper": {
  820. "type": "code",
  821. "value": "({'textContent':getAttr('__pLabel')})"
  822. },
  823. "parser": {
  824. "type": "code",
  825. "value": "({'__pLabel':getAttr('textContent')})"
  826. },
  827. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  828. }
  829. },
  830. "edges": []
  831. }
  832. },
  833. "$asuri": {
  834. "type": "string",
  835. "value": "/Formalisms/GUI/GUI.pattern/__pCanvas/13.instance"
  836. },
  837. "$type": "/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon"
  838. },
  839. "14": {
  840. "link-style": {
  841. "type": "map<string,string>",
  842. "value": {
  843. "stroke": "#a000ff",
  844. "stroke-dasharray": "",
  845. "stroke-opacity": 1,
  846. "stroke-width": 1,
  847. "arrow-start": "none",
  848. "arrow-end": "classic-wide-long"
  849. }
  850. },
  851. "typename": {
  852. "type": "string",
  853. "value": "GenericLinkLink"
  854. },
  855. "position": {
  856. "type": "list<double>",
  857. "value": [
  858. 340,
  859. 448
  860. ]
  861. },
  862. "orientation": {
  863. "type": "double",
  864. "value": 0
  865. },
  866. "scale": {
  867. "type": "list<double>",
  868. "value": [
  869. 1,
  870. 1
  871. ]
  872. },
  873. "mapper": {
  874. "type": "code",
  875. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  876. },
  877. "parser": {
  878. "type": "code",
  879. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  880. },
  881. "$contents": {
  882. "type": "map<string,*>",
  883. "value": {
  884. "nodes": {
  885. "__pLabelText": {
  886. "position": {
  887. "type": "list<double>",
  888. "value": [
  889. 0,
  890. 0
  891. ]
  892. },
  893. "orientation": {
  894. "type": "double",
  895. "value": 0
  896. },
  897. "scale": {
  898. "type": "list<double>",
  899. "value": [
  900. 1,
  901. 1
  902. ]
  903. },
  904. "textContent": {
  905. "type": "string",
  906. "value": "1"
  907. },
  908. "style": {
  909. "type": "map<string,string>",
  910. "value": {
  911. "stroke": "#6000ff",
  912. "fill": "#6000ff",
  913. "font-size": "15px",
  914. "opacity": "1"
  915. }
  916. },
  917. "mapper": {
  918. "type": "code",
  919. "value": "({'textContent':getAttr('__pLabel')})"
  920. },
  921. "parser": {
  922. "type": "code",
  923. "value": "({'__pLabel':getAttr('textContent')})"
  924. },
  925. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  926. }
  927. },
  928. "edges": []
  929. }
  930. },
  931. "$asuri": {
  932. "type": "string",
  933. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/14.instance"
  934. },
  935. "$segments": {
  936. "type": "map<string,list<string>>",
  937. "value": {
  938. "/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon/13.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/14.instance": "M344,433L344,457",
  939. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/14.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/12.instance": "M344,457.0778722189683L344,480.9993758680555"
  940. }
  941. },
  942. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  943. },
  944. "15": {
  945. "link-style": {
  946. "type": "map<string,string>",
  947. "value": {
  948. "stroke": "#00ff00",
  949. "stroke-dasharray": "",
  950. "stroke-opacity": 0.2,
  951. "stroke-width": 1,
  952. "arrow-start": "none",
  953. "arrow-end": "classic-wide-long"
  954. }
  955. },
  956. "typename": {
  957. "type": "string",
  958. "value": "PatternContentsLink"
  959. },
  960. "position": {
  961. "type": "list<double>",
  962. "value": [
  963. "257,50%",
  964. "366,50%"
  965. ]
  966. },
  967. "orientation": {
  968. "type": "double",
  969. "value": 0
  970. },
  971. "scale": {
  972. "type": "list<double>",
  973. "value": [
  974. 1,
  975. 1
  976. ]
  977. },
  978. "mapper": {
  979. "type": "code",
  980. "value": ""
  981. },
  982. "parser": {
  983. "type": "code",
  984. "value": ""
  985. },
  986. "$contents": {
  987. "type": "map<string,*>",
  988. "value": {
  989. "nodes": {},
  990. "edges": []
  991. }
  992. },
  993. "$asuri": {
  994. "type": "string",
  995. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/15.instance"
  996. },
  997. "$segments": {
  998. "type": "map<string,list<string>>",
  999. "value": {
  1000. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon/7.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/15.instance": "M162,181L257,366",
  1001. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/15.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/12.instance": "M257.03423806001757,366.0666741168764L351.9997022773865,550.9994202243843"
  1002. }
  1003. },
  1004. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1005. },
  1006. "16": {
  1007. "link-style": {
  1008. "type": "map<string,string>",
  1009. "value": {
  1010. "stroke": "#00ff00",
  1011. "stroke-dasharray": "",
  1012. "stroke-opacity": 0.2,
  1013. "stroke-width": 1,
  1014. "arrow-start": "none",
  1015. "arrow-end": "classic-wide-long"
  1016. }
  1017. },
  1018. "typename": {
  1019. "type": "string",
  1020. "value": "PatternContentsLink"
  1021. },
  1022. "position": {
  1023. "type": "list<double>",
  1024. "value": [
  1025. "256.61294818326735,50%",
  1026. "263.8489043615383,50%"
  1027. ]
  1028. },
  1029. "orientation": {
  1030. "type": "double",
  1031. "value": 0
  1032. },
  1033. "scale": {
  1034. "type": "list<double>",
  1035. "value": [
  1036. 1,
  1037. 1
  1038. ]
  1039. },
  1040. "mapper": {
  1041. "type": "code",
  1042. "value": ""
  1043. },
  1044. "parser": {
  1045. "type": "code",
  1046. "value": ""
  1047. },
  1048. "$contents": {
  1049. "type": "map<string,*>",
  1050. "value": {
  1051. "nodes": {},
  1052. "edges": []
  1053. }
  1054. },
  1055. "$asuri": {
  1056. "type": "string",
  1057. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/16.instance"
  1058. },
  1059. "$segments": {
  1060. "type": "map<string,list<string>>",
  1061. "value": {
  1062. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon/7.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/16.instance": "M162,181L256.61294818326735,263.8489043615383",
  1063. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/16.instance--/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon/13.instance": "M256.6127681862385,263.84874674509246L350.9996401969462,346.49968493436296"
  1064. }
  1065. },
  1066. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1067. },
  1068. "17": {
  1069. "link-style": {
  1070. "type": "map<string,string>",
  1071. "value": {
  1072. "stroke": "#00ff00",
  1073. "stroke-dasharray": "",
  1074. "stroke-opacity": 0.2,
  1075. "stroke-width": 1,
  1076. "arrow-start": "none",
  1077. "arrow-end": "classic-wide-long"
  1078. }
  1079. },
  1080. "typename": {
  1081. "type": "string",
  1082. "value": "PatternContentsLink"
  1083. },
  1084. "position": {
  1085. "type": "list<double>",
  1086. "value": [
  1087. "253,50%",
  1088. "319,50%"
  1089. ]
  1090. },
  1091. "orientation": {
  1092. "type": "double",
  1093. "value": 0
  1094. },
  1095. "scale": {
  1096. "type": "list<double>",
  1097. "value": [
  1098. 1,
  1099. 1
  1100. ]
  1101. },
  1102. "mapper": {
  1103. "type": "code",
  1104. "value": ""
  1105. },
  1106. "parser": {
  1107. "type": "code",
  1108. "value": ""
  1109. },
  1110. "$contents": {
  1111. "type": "map<string,*>",
  1112. "value": {
  1113. "nodes": {},
  1114. "edges": []
  1115. }
  1116. },
  1117. "$asuri": {
  1118. "type": "string",
  1119. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/17.instance"
  1120. },
  1121. "$segments": {
  1122. "type": "map<string,list<string>>",
  1123. "value": {
  1124. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon/7.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/17.instance": "M162,181L253,319",
  1125. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/17.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/14.instance": "M253.04121322188817,319.0624991716546L343.9995490338092,456.9993161172051"
  1126. }
  1127. },
  1128. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1129. },
  1130. "18": {
  1131. "typename": {
  1132. "type": "string",
  1133. "value": "CanvasIcon"
  1134. },
  1135. "position": {
  1136. "type": "list<double>",
  1137. "value": [
  1138. 1047,
  1139. 256
  1140. ]
  1141. },
  1142. "orientation": {
  1143. "type": "double",
  1144. "value": 0
  1145. },
  1146. "scale": {
  1147. "type": "list<double>",
  1148. "value": [
  1149. 1,
  1150. 1
  1151. ]
  1152. },
  1153. "mapper": {
  1154. "type": "code",
  1155. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1156. },
  1157. "parser": {
  1158. "type": "code",
  1159. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1160. },
  1161. "$contents": {
  1162. "type": "map<string,*>",
  1163. "value": {
  1164. "nodes": {
  1165. "13": {
  1166. "width": {
  1167. "type": "double",
  1168. "value": 175
  1169. },
  1170. "height": {
  1171. "type": "double",
  1172. "value": 175
  1173. },
  1174. "cornerRadius": {
  1175. "type": "double",
  1176. "value": 10
  1177. },
  1178. "style": {
  1179. "type": "map<string,string>",
  1180. "value": {
  1181. "fill": "#ffffff",
  1182. "fill-opacity": 0.75,
  1183. "font-size": "20px",
  1184. "stroke-width": 3
  1185. }
  1186. },
  1187. "mapper": {
  1188. "type": "code",
  1189. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1190. },
  1191. "parser": {
  1192. "type": "code",
  1193. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1194. },
  1195. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1196. "position": {
  1197. "type": "list<double>",
  1198. "value": [
  1199. 1,
  1200. 0
  1201. ]
  1202. },
  1203. "orientation": {
  1204. "type": "double",
  1205. "value": 0
  1206. },
  1207. "scale": {
  1208. "type": "list<double>",
  1209. "value": [
  1210. 1,
  1211. 1
  1212. ]
  1213. }
  1214. },
  1215. "__pLabelText": {
  1216. "position": {
  1217. "type": "list<double>",
  1218. "value": [
  1219. 0,
  1220. 0
  1221. ]
  1222. },
  1223. "orientation": {
  1224. "type": "double",
  1225. "value": 0
  1226. },
  1227. "scale": {
  1228. "type": "list<double>",
  1229. "value": [
  1230. 1,
  1231. 1
  1232. ]
  1233. },
  1234. "textContent": {
  1235. "type": "string",
  1236. "value": "0"
  1237. },
  1238. "style": {
  1239. "type": "map<string,string>",
  1240. "value": {
  1241. "stroke": "#6000ff",
  1242. "fill": "#6000ff",
  1243. "font-size": "15px",
  1244. "opacity": "1"
  1245. }
  1246. },
  1247. "mapper": {
  1248. "type": "code",
  1249. "value": "({'textContent':getAttr('__pLabel')})"
  1250. },
  1251. "parser": {
  1252. "type": "code",
  1253. "value": "({'__pLabel':getAttr('textContent')})"
  1254. },
  1255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1256. }
  1257. },
  1258. "edges": []
  1259. }
  1260. },
  1261. "$asuri": {
  1262. "type": "string",
  1263. "value": "/Formalisms/GUI/GUI.pattern/__pCanvas/18.instance"
  1264. },
  1265. "$type": "/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon"
  1266. },
  1267. "19": {
  1268. "typename": {
  1269. "type": "string",
  1270. "value": "FileIcon"
  1271. },
  1272. "position": {
  1273. "type": "list<double>",
  1274. "value": [
  1275. 1096,
  1276. 477
  1277. ]
  1278. },
  1279. "orientation": {
  1280. "type": "double",
  1281. "value": 0
  1282. },
  1283. "scale": {
  1284. "type": "list<double>",
  1285. "value": [
  1286. 1,
  1287. 1
  1288. ]
  1289. },
  1290. "mapper": {
  1291. "type": "code",
  1292. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1293. },
  1294. "parser": {
  1295. "type": "code",
  1296. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1297. },
  1298. "$contents": {
  1299. "type": "map<string,*>",
  1300. "value": {
  1301. "nodes": {
  1302. "22": {
  1303. "segments": {
  1304. "type": "string",
  1305. "value": "m0,0 l60,0 l30,30 l0,90 l-90,0 l0,-120 l60,0 l0,30 l30,0"
  1306. },
  1307. "style": {
  1308. "type": "map<string,string>",
  1309. "value": {
  1310. "stroke": "#000000",
  1311. "stroke-dasharray": "",
  1312. "fill": "#ffffff",
  1313. "fill-opacity": 0.75,
  1314. "font-size": "20px",
  1315. "stroke-width": 3,
  1316. "arrow-start": "none",
  1317. "arrow-end": "none"
  1318. }
  1319. },
  1320. "mapper": {
  1321. "type": "code",
  1322. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1323. },
  1324. "parser": {
  1325. "type": "code",
  1326. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1327. },
  1328. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1329. "position": {
  1330. "type": "list<double>",
  1331. "value": [
  1332. 2,
  1333. 1
  1334. ]
  1335. },
  1336. "orientation": {
  1337. "type": "double",
  1338. "value": 0
  1339. },
  1340. "scale": {
  1341. "type": "list<double>",
  1342. "value": [
  1343. 1,
  1344. 1
  1345. ]
  1346. }
  1347. },
  1348. "23": {
  1349. "textContent": {
  1350. "type": "string",
  1351. "value": "....xml"
  1352. },
  1353. "style": {
  1354. "type": "map<string,string>",
  1355. "value": {
  1356. "stroke": "#000000",
  1357. "fill": "#ffffff",
  1358. "fill-opacity": 0.75,
  1359. "font-size": "13px"
  1360. }
  1361. },
  1362. "mapper": {
  1363. "type": "code",
  1364. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1365. },
  1366. "parser": {
  1367. "type": "code",
  1368. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1369. },
  1370. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1371. "position": {
  1372. "type": "list<double>",
  1373. "value": [
  1374. 4,
  1375. 126
  1376. ]
  1377. },
  1378. "orientation": {
  1379. "type": "double",
  1380. "value": 0
  1381. },
  1382. "scale": {
  1383. "type": "list<double>",
  1384. "value": [
  1385. 1,
  1386. 1
  1387. ]
  1388. }
  1389. },
  1390. "24": {
  1391. "distance": {
  1392. "type": "double",
  1393. "value": 5
  1394. },
  1395. "alignment": {
  1396. "type": "ENUM(\"right\",\"left\",\"center\")",
  1397. "value": "\"left\""
  1398. },
  1399. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1400. "position": {
  1401. "type": "list<double>",
  1402. "value": [
  1403. 27.99899850809561,
  1404. 117.99900000000002
  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. "link-style": {
  1419. "type": "map<string,string>",
  1420. "value": {
  1421. "stroke": "#00ff00",
  1422. "stroke-dasharray": "",
  1423. "stroke-opacity": 1,
  1424. "arrow-start": "none",
  1425. "arrow-end": "classic-wide-long"
  1426. }
  1427. }
  1428. },
  1429. "__pLabelText": {
  1430. "position": {
  1431. "type": "list<double>",
  1432. "value": [
  1433. 0,
  1434. 0
  1435. ]
  1436. },
  1437. "orientation": {
  1438. "type": "double",
  1439. "value": 0
  1440. },
  1441. "scale": {
  1442. "type": "list<double>",
  1443. "value": [
  1444. 1,
  1445. 1
  1446. ]
  1447. },
  1448. "textContent": {
  1449. "type": "string",
  1450. "value": "2"
  1451. },
  1452. "style": {
  1453. "type": "map<string,string>",
  1454. "value": {
  1455. "stroke": "#6000ff",
  1456. "fill": "#6000ff",
  1457. "font-size": "15px",
  1458. "opacity": "1"
  1459. }
  1460. },
  1461. "mapper": {
  1462. "type": "code",
  1463. "value": "({'textContent':getAttr('__pLabel')})"
  1464. },
  1465. "parser": {
  1466. "type": "code",
  1467. "value": "({'__pLabel':getAttr('textContent')})"
  1468. },
  1469. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1470. }
  1471. },
  1472. "edges": [
  1473. {
  1474. "src": "23",
  1475. "dest": "24"
  1476. },
  1477. {
  1478. "src": "24",
  1479. "dest": "22"
  1480. }
  1481. ]
  1482. }
  1483. },
  1484. "$asuri": {
  1485. "type": "string",
  1486. "value": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile/19.instance"
  1487. },
  1488. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon"
  1489. },
  1490. "20": {
  1491. "link-style": {
  1492. "type": "map<string,string>",
  1493. "value": {
  1494. "stroke": "#a000ff",
  1495. "stroke-dasharray": "",
  1496. "stroke-opacity": 1,
  1497. "stroke-width": 1,
  1498. "arrow-start": "none",
  1499. "arrow-end": "classic-wide-long"
  1500. }
  1501. },
  1502. "typename": {
  1503. "type": "string",
  1504. "value": "GenericLinkLink"
  1505. },
  1506. "position": {
  1507. "type": "list<double>",
  1508. "value": [
  1509. 1128,
  1510. 445.5
  1511. ]
  1512. },
  1513. "orientation": {
  1514. "type": "double",
  1515. "value": 0
  1516. },
  1517. "scale": {
  1518. "type": "list<double>",
  1519. "value": [
  1520. 1,
  1521. 1
  1522. ]
  1523. },
  1524. "mapper": {
  1525. "type": "code",
  1526. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1527. },
  1528. "parser": {
  1529. "type": "code",
  1530. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1531. },
  1532. "$contents": {
  1533. "type": "map<string,*>",
  1534. "value": {
  1535. "nodes": {
  1536. "__pLabelText": {
  1537. "position": {
  1538. "type": "list<double>",
  1539. "value": [
  1540. 0,
  1541. 0
  1542. ]
  1543. },
  1544. "orientation": {
  1545. "type": "double",
  1546. "value": 0
  1547. },
  1548. "scale": {
  1549. "type": "list<double>",
  1550. "value": [
  1551. 1,
  1552. 1
  1553. ]
  1554. },
  1555. "textContent": {
  1556. "type": "string",
  1557. "value": "1"
  1558. },
  1559. "style": {
  1560. "type": "map<string,string>",
  1561. "value": {
  1562. "stroke": "#6000ff",
  1563. "fill": "#6000ff",
  1564. "font-size": "15px",
  1565. "opacity": "1"
  1566. }
  1567. },
  1568. "mapper": {
  1569. "type": "code",
  1570. "value": "({'textContent':getAttr('__pLabel')})"
  1571. },
  1572. "parser": {
  1573. "type": "code",
  1574. "value": "({'__pLabel':getAttr('textContent')})"
  1575. },
  1576. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1577. }
  1578. },
  1579. "edges": []
  1580. }
  1581. },
  1582. "$asuri": {
  1583. "type": "string",
  1584. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/20.instance"
  1585. },
  1586. "$segments": {
  1587. "type": "map<string,list<string>>",
  1588. "value": {
  1589. "/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon/18.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/20.instance": "M1132,432L1132,454.5",
  1590. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/20.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/19.instance": "M1132.0000000000002,454.57806804258166L1132,476.9993343209878"
  1591. }
  1592. },
  1593. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  1594. },
  1595. "24": {
  1596. "typename": {
  1597. "type": "string",
  1598. "value": "FileIcon"
  1599. },
  1600. "position": {
  1601. "type": "list<double>",
  1602. "value": [
  1603. 718,
  1604. 528
  1605. ]
  1606. },
  1607. "orientation": {
  1608. "type": "double",
  1609. "value": 0
  1610. },
  1611. "scale": {
  1612. "type": "list<double>",
  1613. "value": [
  1614. 1,
  1615. 1
  1616. ]
  1617. },
  1618. "mapper": {
  1619. "type": "code",
  1620. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1621. },
  1622. "parser": {
  1623. "type": "code",
  1624. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1625. },
  1626. "$contents": {
  1627. "type": "map<string,*>",
  1628. "value": {
  1629. "nodes": {
  1630. "22": {
  1631. "segments": {
  1632. "type": "string",
  1633. "value": "m0,0 l60,0 l30,30 l0,90 l-90,0 l0,-120 l60,0 l0,30 l30,0"
  1634. },
  1635. "style": {
  1636. "type": "map<string,string>",
  1637. "value": {
  1638. "stroke": "#000000",
  1639. "stroke-dasharray": "",
  1640. "fill": "#ffffff",
  1641. "fill-opacity": 0.75,
  1642. "font-size": "20px",
  1643. "stroke-width": 3,
  1644. "arrow-start": "none",
  1645. "arrow-end": "none"
  1646. }
  1647. },
  1648. "mapper": {
  1649. "type": "code",
  1650. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1651. },
  1652. "parser": {
  1653. "type": "code",
  1654. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1655. },
  1656. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1657. "position": {
  1658. "type": "list<double>",
  1659. "value": [
  1660. 2,
  1661. 1
  1662. ]
  1663. },
  1664. "orientation": {
  1665. "type": "double",
  1666. "value": 0
  1667. },
  1668. "scale": {
  1669. "type": "list<double>",
  1670. "value": [
  1671. 1,
  1672. 1
  1673. ]
  1674. }
  1675. },
  1676. "23": {
  1677. "textContent": {
  1678. "type": "string",
  1679. "value": "GUI.java"
  1680. },
  1681. "style": {
  1682. "type": "map<string,string>",
  1683. "value": {
  1684. "stroke": "#000000",
  1685. "fill": "#ffffff",
  1686. "fill-opacity": 0.75,
  1687. "font-size": "13px"
  1688. }
  1689. },
  1690. "mapper": {
  1691. "type": "code",
  1692. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1693. },
  1694. "parser": {
  1695. "type": "code",
  1696. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1697. },
  1698. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1699. "position": {
  1700. "type": "list<double>",
  1701. "value": [
  1702. 4,
  1703. 126
  1704. ]
  1705. },
  1706. "orientation": {
  1707. "type": "double",
  1708. "value": 0
  1709. },
  1710. "scale": {
  1711. "type": "list<double>",
  1712. "value": [
  1713. 1,
  1714. 1
  1715. ]
  1716. }
  1717. },
  1718. "24": {
  1719. "distance": {
  1720. "type": "double",
  1721. "value": 5
  1722. },
  1723. "alignment": {
  1724. "type": "ENUM(\"right\",\"left\",\"center\")",
  1725. "value": "\"left\""
  1726. },
  1727. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1728. "position": {
  1729. "type": "list<double>",
  1730. "value": [
  1731. 27.99899850809561,
  1732. 117.99900000000002
  1733. ]
  1734. },
  1735. "orientation": {
  1736. "type": "double",
  1737. "value": 0
  1738. },
  1739. "scale": {
  1740. "type": "list<double>",
  1741. "value": [
  1742. 1,
  1743. 1
  1744. ]
  1745. },
  1746. "link-style": {
  1747. "type": "map<string,string>",
  1748. "value": {
  1749. "stroke": "#00ff00",
  1750. "stroke-dasharray": "",
  1751. "stroke-opacity": 1,
  1752. "arrow-start": "none",
  1753. "arrow-end": "classic-wide-long"
  1754. }
  1755. }
  1756. },
  1757. "__pLabelText": {
  1758. "position": {
  1759. "type": "list<double>",
  1760. "value": [
  1761. 0,
  1762. 0
  1763. ]
  1764. },
  1765. "orientation": {
  1766. "type": "double",
  1767. "value": 0
  1768. },
  1769. "scale": {
  1770. "type": "list<double>",
  1771. "value": [
  1772. 1,
  1773. 1
  1774. ]
  1775. },
  1776. "textContent": {
  1777. "type": "string",
  1778. "value": "4"
  1779. },
  1780. "style": {
  1781. "type": "map<string,string>",
  1782. "value": {
  1783. "stroke": "#6000ff",
  1784. "fill": "#6000ff",
  1785. "font-size": "15px",
  1786. "opacity": "1"
  1787. }
  1788. },
  1789. "mapper": {
  1790. "type": "code",
  1791. "value": "({'textContent':getAttr('__pLabel')})"
  1792. },
  1793. "parser": {
  1794. "type": "code",
  1795. "value": "({'__pLabel':getAttr('textContent')})"
  1796. },
  1797. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1798. }
  1799. },
  1800. "edges": [
  1801. {
  1802. "src": "23",
  1803. "dest": "24"
  1804. },
  1805. {
  1806. "src": "24",
  1807. "dest": "22"
  1808. }
  1809. ]
  1810. }
  1811. },
  1812. "$asuri": {
  1813. "type": "string",
  1814. "value": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile/24.instance"
  1815. },
  1816. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon"
  1817. },
  1818. "25": {
  1819. "link-style": {
  1820. "type": "map<string,string>",
  1821. "value": {
  1822. "stroke": "#00ff00",
  1823. "stroke-dasharray": "",
  1824. "stroke-opacity": 0.2,
  1825. "stroke-width": 1,
  1826. "arrow-start": "none",
  1827. "arrow-end": "classic-wide-long"
  1828. }
  1829. },
  1830. "typename": {
  1831. "type": "string",
  1832. "value": "PatternContentsLink"
  1833. },
  1834. "position": {
  1835. "type": "list<double>",
  1836. "value": [
  1837. "667.5,50%",
  1838. "390,50%"
  1839. ]
  1840. },
  1841. "orientation": {
  1842. "type": "double",
  1843. "value": 0
  1844. },
  1845. "scale": {
  1846. "type": "list<double>",
  1847. "value": [
  1848. 1,
  1849. 1
  1850. ]
  1851. },
  1852. "mapper": {
  1853. "type": "code",
  1854. "value": ""
  1855. },
  1856. "parser": {
  1857. "type": "code",
  1858. "value": ""
  1859. },
  1860. "$contents": {
  1861. "type": "map<string,*>",
  1862. "value": {
  1863. "nodes": {},
  1864. "edges": []
  1865. }
  1866. },
  1867. "$asuri": {
  1868. "type": "string",
  1869. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/25.instance"
  1870. },
  1871. "$segments": {
  1872. "type": "map<string,list<string>>",
  1873. "value": {
  1874. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/8.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/25.instance": "M571,181L667.5,390",
  1875. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/25.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/24.instance": "M667.5313853019657,390.06797438456806L763.9997538405318,598.9994668670585"
  1876. }
  1877. },
  1878. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1879. },
  1880. "26": {
  1881. "typename": {
  1882. "type": "string",
  1883. "value": "FileIcon"
  1884. },
  1885. "position": {
  1886. "type": "list<double>",
  1887. "value": [
  1888. 1261,
  1889. 275
  1890. ]
  1891. },
  1892. "orientation": {
  1893. "type": "double",
  1894. "value": 0
  1895. },
  1896. "scale": {
  1897. "type": "list<double>",
  1898. "value": [
  1899. 1,
  1900. 1
  1901. ]
  1902. },
  1903. "mapper": {
  1904. "type": "code",
  1905. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1906. },
  1907. "parser": {
  1908. "type": "code",
  1909. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1910. },
  1911. "$contents": {
  1912. "type": "map<string,*>",
  1913. "value": {
  1914. "nodes": {
  1915. "22": {
  1916. "segments": {
  1917. "type": "string",
  1918. "value": "m0,0 l60,0 l30,30 l0,90 l-90,0 l0,-120 l60,0 l0,30 l30,0"
  1919. },
  1920. "style": {
  1921. "type": "map<string,string>",
  1922. "value": {
  1923. "stroke": "#000000",
  1924. "stroke-dasharray": "",
  1925. "fill": "#ffffff",
  1926. "fill-opacity": 0.75,
  1927. "font-size": "20px",
  1928. "stroke-width": 3,
  1929. "arrow-start": "none",
  1930. "arrow-end": "none"
  1931. }
  1932. },
  1933. "mapper": {
  1934. "type": "code",
  1935. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1936. },
  1937. "parser": {
  1938. "type": "code",
  1939. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1940. },
  1941. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1942. "position": {
  1943. "type": "list<double>",
  1944. "value": [
  1945. 2,
  1946. 1
  1947. ]
  1948. },
  1949. "orientation": {
  1950. "type": "double",
  1951. "value": 0
  1952. },
  1953. "scale": {
  1954. "type": "list<double>",
  1955. "value": [
  1956. 1,
  1957. 1
  1958. ]
  1959. }
  1960. },
  1961. "23": {
  1962. "textContent": {
  1963. "type": "string",
  1964. "value": "GUI.java"
  1965. },
  1966. "style": {
  1967. "type": "map<string,string>",
  1968. "value": {
  1969. "stroke": "#000000",
  1970. "fill": "#ffffff",
  1971. "fill-opacity": 0.75,
  1972. "font-size": "13px"
  1973. }
  1974. },
  1975. "mapper": {
  1976. "type": "code",
  1977. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1978. },
  1979. "parser": {
  1980. "type": "code",
  1981. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1982. },
  1983. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1984. "position": {
  1985. "type": "list<double>",
  1986. "value": [
  1987. 4,
  1988. 126
  1989. ]
  1990. },
  1991. "orientation": {
  1992. "type": "double",
  1993. "value": 0
  1994. },
  1995. "scale": {
  1996. "type": "list<double>",
  1997. "value": [
  1998. 1,
  1999. 1
  2000. ]
  2001. }
  2002. },
  2003. "24": {
  2004. "distance": {
  2005. "type": "double",
  2006. "value": 5
  2007. },
  2008. "alignment": {
  2009. "type": "ENUM(\"right\",\"left\",\"center\")",
  2010. "value": "\"left\""
  2011. },
  2012. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  2013. "position": {
  2014. "type": "list<double>",
  2015. "value": [
  2016. 27.99899850809561,
  2017. 117.99900000000002
  2018. ]
  2019. },
  2020. "orientation": {
  2021. "type": "double",
  2022. "value": 0
  2023. },
  2024. "scale": {
  2025. "type": "list<double>",
  2026. "value": [
  2027. 1,
  2028. 1
  2029. ]
  2030. },
  2031. "link-style": {
  2032. "type": "map<string,string>",
  2033. "value": {
  2034. "stroke": "#00ff00",
  2035. "stroke-dasharray": "",
  2036. "stroke-opacity": 1,
  2037. "arrow-start": "none",
  2038. "arrow-end": "classic-wide-long"
  2039. }
  2040. }
  2041. },
  2042. "__pLabelText": {
  2043. "position": {
  2044. "type": "list<double>",
  2045. "value": [
  2046. 0,
  2047. 0
  2048. ]
  2049. },
  2050. "orientation": {
  2051. "type": "double",
  2052. "value": 0
  2053. },
  2054. "scale": {
  2055. "type": "list<double>",
  2056. "value": [
  2057. 1,
  2058. 1
  2059. ]
  2060. },
  2061. "textContent": {
  2062. "type": "string",
  2063. "value": "4"
  2064. },
  2065. "style": {
  2066. "type": "map<string,string>",
  2067. "value": {
  2068. "stroke": "#6000ff",
  2069. "fill": "#6000ff",
  2070. "font-size": "15px",
  2071. "opacity": "1"
  2072. }
  2073. },
  2074. "mapper": {
  2075. "type": "code",
  2076. "value": "({'textContent':getAttr('__pLabel')})"
  2077. },
  2078. "parser": {
  2079. "type": "code",
  2080. "value": "({'__pLabel':getAttr('textContent')})"
  2081. },
  2082. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2083. }
  2084. },
  2085. "edges": [
  2086. {
  2087. "src": "23",
  2088. "dest": "24"
  2089. },
  2090. {
  2091. "src": "24",
  2092. "dest": "22"
  2093. }
  2094. ]
  2095. }
  2096. },
  2097. "$asuri": {
  2098. "type": "string",
  2099. "value": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile/26.instance"
  2100. },
  2101. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon"
  2102. },
  2103. "27": {
  2104. "link-style": {
  2105. "type": "map<string,string>",
  2106. "value": {
  2107. "stroke": "#a000ff",
  2108. "stroke-dasharray": "",
  2109. "stroke-opacity": 1,
  2110. "stroke-width": 1,
  2111. "arrow-start": "none",
  2112. "arrow-end": "classic-wide-long"
  2113. }
  2114. },
  2115. "typename": {
  2116. "type": "string",
  2117. "value": "GenericLinkLink"
  2118. },
  2119. "position": {
  2120. "type": "list<double>",
  2121. "value": [
  2122. 1239,
  2123. 330
  2124. ]
  2125. },
  2126. "orientation": {
  2127. "type": "double",
  2128. "value": 0
  2129. },
  2130. "scale": {
  2131. "type": "list<double>",
  2132. "value": [
  2133. 1,
  2134. 1
  2135. ]
  2136. },
  2137. "mapper": {
  2138. "type": "code",
  2139. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2140. },
  2141. "parser": {
  2142. "type": "code",
  2143. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  2144. },
  2145. "$contents": {
  2146. "type": "map<string,*>",
  2147. "value": {
  2148. "nodes": {
  2149. "__pLabelText": {
  2150. "position": {
  2151. "type": "list<double>",
  2152. "value": [
  2153. 0,
  2154. 0
  2155. ]
  2156. },
  2157. "orientation": {
  2158. "type": "double",
  2159. "value": 0
  2160. },
  2161. "scale": {
  2162. "type": "list<double>",
  2163. "value": [
  2164. 1,
  2165. 1
  2166. ]
  2167. },
  2168. "textContent": {
  2169. "type": "string",
  2170. "value": "3"
  2171. },
  2172. "style": {
  2173. "type": "map<string,string>",
  2174. "value": {
  2175. "stroke": "#6000ff",
  2176. "fill": "#6000ff",
  2177. "font-size": "15px",
  2178. "opacity": "1"
  2179. }
  2180. },
  2181. "mapper": {
  2182. "type": "code",
  2183. "value": "({'textContent':getAttr('__pLabel')})"
  2184. },
  2185. "parser": {
  2186. "type": "code",
  2187. "value": "({'__pLabel':getAttr('textContent')})"
  2188. },
  2189. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  2190. }
  2191. },
  2192. "edges": []
  2193. }
  2194. },
  2195. "$asuri": {
  2196. "type": "string",
  2197. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/27.instance"
  2198. },
  2199. "$segments": {
  2200. "type": "map<string,list<string>>",
  2201. "value": {
  2202. "/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon/18.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/27.instance": "M1224,339L1243,339",
  2203. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/27.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/26.instance": "M1243.0786484490018,339.0000000000001L1261.9992119113572,339"
  2204. }
  2205. },
  2206. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  2207. },
  2208. "28": {
  2209. "link-style": {
  2210. "type": "map<string,string>",
  2211. "value": {
  2212. "stroke": "#00ff00",
  2213. "stroke-dasharray": "",
  2214. "stroke-opacity": 0.2,
  2215. "stroke-width": 1,
  2216. "arrow-start": "none",
  2217. "arrow-end": "classic-wide-long"
  2218. }
  2219. },
  2220. "typename": {
  2221. "type": "string",
  2222. "value": "PatternContentsLink"
  2223. },
  2224. "position": {
  2225. "type": "list<double>",
  2226. "value": [
  2227. "1032.5,50%",
  2228. "261.75,50%"
  2229. ]
  2230. },
  2231. "orientation": {
  2232. "type": "double",
  2233. "value": 0
  2234. },
  2235. "scale": {
  2236. "type": "list<double>",
  2237. "value": [
  2238. 1,
  2239. 1
  2240. ]
  2241. },
  2242. "mapper": {
  2243. "type": "code",
  2244. "value": ""
  2245. },
  2246. "parser": {
  2247. "type": "code",
  2248. "value": ""
  2249. },
  2250. "$contents": {
  2251. "type": "map<string,*>",
  2252. "value": {
  2253. "nodes": {},
  2254. "edges": []
  2255. }
  2256. },
  2257. "$asuri": {
  2258. "type": "string",
  2259. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/28.instance"
  2260. },
  2261. "$segments": {
  2262. "type": "map<string,list<string>>",
  2263. "value": {
  2264. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/28.instance": "M930,180L1032.5,261.75",
  2265. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/28.instance--/Formalisms/GUI/GUI.defaultIcons.pattern/__pCanvasIcon/18.instance": "M1032.6171872041587,261.8434639408778L1134.9996418116525,343.49971432295223"
  2266. }
  2267. },
  2268. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2269. },
  2270. "29": {
  2271. "link-style": {
  2272. "type": "map<string,string>",
  2273. "value": {
  2274. "stroke": "#00ff00",
  2275. "stroke-dasharray": "",
  2276. "stroke-opacity": 0.2,
  2277. "stroke-width": 1,
  2278. "arrow-start": "none",
  2279. "arrow-end": "classic-wide-long"
  2280. }
  2281. },
  2282. "typename": {
  2283. "type": "string",
  2284. "value": "PatternContentsLink"
  2285. },
  2286. "position": {
  2287. "type": "list<double>",
  2288. "value": [
  2289. "1036.0749999944376,50%",
  2290. "364.13018866958964,50%"
  2291. ]
  2292. },
  2293. "orientation": {
  2294. "type": "double",
  2295. "value": 0
  2296. },
  2297. "scale": {
  2298. "type": "list<double>",
  2299. "value": [
  2300. 1,
  2301. 1
  2302. ]
  2303. },
  2304. "mapper": {
  2305. "type": "code",
  2306. "value": ""
  2307. },
  2308. "parser": {
  2309. "type": "code",
  2310. "value": ""
  2311. },
  2312. "$contents": {
  2313. "type": "map<string,*>",
  2314. "value": {
  2315. "nodes": {},
  2316. "edges": []
  2317. }
  2318. },
  2319. "$asuri": {
  2320. "type": "string",
  2321. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/29.instance"
  2322. },
  2323. "$segments": {
  2324. "type": "map<string,list<string>>",
  2325. "value": {
  2326. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/29.instance": "M930,180L1036.0749999944376,364.13018866958964",
  2327. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/29.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/19.instance": "M1036.037393867235,364.0649101091629L1141.9996817539604,547.9994475729126"
  2328. }
  2329. },
  2330. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2331. },
  2332. "30": {
  2333. "link-style": {
  2334. "type": "map<string,string>",
  2335. "value": {
  2336. "stroke": "#00ff00",
  2337. "stroke-dasharray": "",
  2338. "stroke-opacity": 0.2,
  2339. "stroke-width": 1,
  2340. "arrow-start": "none",
  2341. "arrow-end": "classic-wide-long"
  2342. }
  2343. },
  2344. "typename": {
  2345. "type": "string",
  2346. "value": "PatternContentsLink"
  2347. },
  2348. "position": {
  2349. "type": "list<double>",
  2350. "value": [
  2351. "1031,50%",
  2352. "317.25,50%"
  2353. ]
  2354. },
  2355. "orientation": {
  2356. "type": "double",
  2357. "value": 0
  2358. },
  2359. "scale": {
  2360. "type": "list<double>",
  2361. "value": [
  2362. 1,
  2363. 1
  2364. ]
  2365. },
  2366. "mapper": {
  2367. "type": "code",
  2368. "value": ""
  2369. },
  2370. "parser": {
  2371. "type": "code",
  2372. "value": ""
  2373. },
  2374. "$contents": {
  2375. "type": "map<string,*>",
  2376. "value": {
  2377. "nodes": {},
  2378. "edges": []
  2379. }
  2380. },
  2381. "$asuri": {
  2382. "type": "string",
  2383. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/30.instance"
  2384. },
  2385. "$segments": {
  2386. "type": "map<string,list<string>>",
  2387. "value": {
  2388. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/30.instance": "M930,180L1031,317.25",
  2389. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/30.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/20.instance": "M1031.044401555822,317.3103377577879L1131.999528478221,454.49935924391923"
  2390. }
  2391. },
  2392. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2393. },
  2394. "31": {
  2395. "link-style": {
  2396. "type": "map<string,string>",
  2397. "value": {
  2398. "stroke": "#00ff00",
  2399. "stroke-dasharray": "",
  2400. "stroke-opacity": 0.2,
  2401. "stroke-width": 1,
  2402. "arrow-start": "none",
  2403. "arrow-end": "classic-wide-long"
  2404. }
  2405. },
  2406. "typename": {
  2407. "type": "string",
  2408. "value": "PatternContentsLink"
  2409. },
  2410. "position": {
  2411. "type": "list<double>",
  2412. "value": [
  2413. "1118.6375912300155,50%",
  2414. "263.06058393682383,50%"
  2415. ]
  2416. },
  2417. "orientation": {
  2418. "type": "double",
  2419. "value": 0
  2420. },
  2421. "scale": {
  2422. "type": "list<double>",
  2423. "value": [
  2424. 1,
  2425. 1
  2426. ]
  2427. },
  2428. "mapper": {
  2429. "type": "code",
  2430. "value": ""
  2431. },
  2432. "parser": {
  2433. "type": "code",
  2434. "value": ""
  2435. },
  2436. "$contents": {
  2437. "type": "map<string,*>",
  2438. "value": {
  2439. "nodes": {},
  2440. "edges": []
  2441. }
  2442. },
  2443. "$asuri": {
  2444. "type": "string",
  2445. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/31.instance"
  2446. },
  2447. "$segments": {
  2448. "type": "map<string,list<string>>",
  2449. "value": {
  2450. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/31.instance": "M930,180L1118.6375912300155,263.06058393682383",
  2451. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/31.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/26.instance": "M1118.5685947559668,263.03020352650003L1306.9993977038548,345.99973479798376"
  2452. }
  2453. },
  2454. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2455. },
  2456. "32": {
  2457. "link-style": {
  2458. "type": "map<string,string>",
  2459. "value": {
  2460. "stroke": "#00ff00",
  2461. "stroke-dasharray": "",
  2462. "stroke-opacity": 0.2,
  2463. "stroke-width": 1,
  2464. "arrow-start": "none",
  2465. "arrow-end": "classic-wide-long"
  2466. }
  2467. },
  2468. "typename": {
  2469. "type": "string",
  2470. "value": "PatternContentsLink"
  2471. },
  2472. "position": {
  2473. "type": "list<double>",
  2474. "value": [
  2475. "1086.6337606692844,50%",
  2476. "259.567948710595,50%"
  2477. ]
  2478. },
  2479. "orientation": {
  2480. "type": "double",
  2481. "value": 0
  2482. },
  2483. "scale": {
  2484. "type": "list<double>",
  2485. "value": [
  2486. 1,
  2487. 1
  2488. ]
  2489. },
  2490. "mapper": {
  2491. "type": "code",
  2492. "value": ""
  2493. },
  2494. "parser": {
  2495. "type": "code",
  2496. "value": ""
  2497. },
  2498. "$contents": {
  2499. "type": "map<string,*>",
  2500. "value": {
  2501. "nodes": {},
  2502. "edges": []
  2503. }
  2504. },
  2505. "$asuri": {
  2506. "type": "string",
  2507. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/32.instance"
  2508. },
  2509. "$segments": {
  2510. "type": "map<string,list<string>>",
  2511. "value": {
  2512. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/32.instance": "M930,180L1086.6337606692844,259.567948710595",
  2513. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/32.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/27.instance": "M1086.5666516893477,259.53385820640995L1242.9993144386317,338.999651743586"
  2514. }
  2515. },
  2516. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2517. }
  2518. },
  2519. "edges": [],
  2520. "metamodels": [
  2521. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  2522. "/Formalisms/GUI/GUI.defaultIcons.pattern",
  2523. "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern",
  2524. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern"
  2525. ]
  2526. },
  2527. "asm": {
  2528. "nodes": {
  2529. "7": {
  2530. "name": {
  2531. "type": "string",
  2532. "value": "NAC_"
  2533. },
  2534. "Condition": {
  2535. "type": "code",
  2536. "value": "true"
  2537. },
  2538. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/NAC"
  2539. },
  2540. "8": {
  2541. "Condition": {
  2542. "type": "code",
  2543. "value": "true"
  2544. },
  2545. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  2546. },
  2547. "9": {
  2548. "Action": {
  2549. "type": "code",
  2550. "value": "var id = getAttr('$atompmId','0'),\n xml = '<?xml version=\"1.0\" encoding=\"utf-8\"?>\\n'+\n '<LinearLayout xmlns:android=\"http://schemas.android.com/apk/res/android\"\\n'+\n ' android:orientation=\"vertical\"\\n'+\n ' android:layout_width=\"fill_parent\"\\n'+\n ' android:layout_height=\"fill_parent\">\\n'+\n ' <!--NEXT-->\\n'+\n '</LinearLayout>';\n\nsetAttr('content',xml,'2');\nsetAttr('path','./screen__'+id+'.xml','2');\n\n\n\nvar code = 'private void draw__'+id+'() {\\n'+\n ' exec.setContentView(R.layout.screen__'+id+');\\n'+\n ' /* DRAW '+id+' */\\n'+\n '}\\n'+\n '/* GUI CODE */',\n java = getAttr('content','4').replace(/\\/\\* GUI CODE \\*\\//,code);\n\nsetAttr('content',java,'4');\n"
  2551. },
  2552. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  2553. },
  2554. "10": {
  2555. "__pLabel": {
  2556. "type": "string",
  2557. "value": "0"
  2558. },
  2559. "__pMatchSubtypes": {
  2560. "type": "boolean",
  2561. "value": false
  2562. },
  2563. "$type": "/Formalisms/GUI/GUI.pattern/__pCanvas"
  2564. },
  2565. "11": {
  2566. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2567. },
  2568. "12": {
  2569. "__pLabel": {
  2570. "type": "string",
  2571. "value": "2"
  2572. },
  2573. "__pMatchSubtypes": {
  2574. "type": "boolean",
  2575. "value": false
  2576. },
  2577. "content": {
  2578. "type": "code",
  2579. "value": "true"
  2580. },
  2581. "path": {
  2582. "type": "code",
  2583. "value": "getAttr().match(/\\.xml$/)"
  2584. },
  2585. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile"
  2586. },
  2587. "13": {
  2588. "__pLabel": {
  2589. "type": "string",
  2590. "value": "0"
  2591. },
  2592. "__pMatchSubtypes": {
  2593. "type": "boolean",
  2594. "value": false
  2595. },
  2596. "$type": "/Formalisms/GUI/GUI.pattern/__pCanvas"
  2597. },
  2598. "14": {
  2599. "__pLabel": {
  2600. "type": "string",
  2601. "value": "1"
  2602. },
  2603. "__pMatchSubtypes": {
  2604. "type": "boolean",
  2605. "value": false
  2606. },
  2607. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  2608. },
  2609. "15": {
  2610. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2611. },
  2612. "16": {
  2613. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2614. },
  2615. "17": {
  2616. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2617. },
  2618. "18": {
  2619. "__pLabel": {
  2620. "type": "string",
  2621. "value": "0"
  2622. },
  2623. "__pMatchSubtypes": {
  2624. "type": "boolean"
  2625. },
  2626. "$type": "/Formalisms/GUI/GUI.pattern/__pCanvas"
  2627. },
  2628. "19": {
  2629. "__pLabel": {
  2630. "type": "string",
  2631. "value": "2"
  2632. },
  2633. "__pMatchSubtypes": {
  2634. "type": "boolean"
  2635. },
  2636. "content": {
  2637. "type": "code",
  2638. "value": ""
  2639. },
  2640. "path": {
  2641. "type": "code",
  2642. "value": ""
  2643. },
  2644. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile"
  2645. },
  2646. "20": {
  2647. "__pLabel": {
  2648. "type": "string",
  2649. "value": "1"
  2650. },
  2651. "__pMatchSubtypes": {
  2652. "type": "boolean"
  2653. },
  2654. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  2655. },
  2656. "24": {
  2657. "__pLabel": {
  2658. "type": "string",
  2659. "value": "4"
  2660. },
  2661. "__pMatchSubtypes": {
  2662. "type": "boolean",
  2663. "value": false
  2664. },
  2665. "content": {
  2666. "type": "code",
  2667. "value": "true"
  2668. },
  2669. "path": {
  2670. "type": "code",
  2671. "value": "getAttr()=='./GUI.java'"
  2672. },
  2673. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile"
  2674. },
  2675. "25": {
  2676. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2677. },
  2678. "26": {
  2679. "__pLabel": {
  2680. "type": "string",
  2681. "value": "4"
  2682. },
  2683. "__pMatchSubtypes": {
  2684. "type": "boolean"
  2685. },
  2686. "content": {
  2687. "type": "code",
  2688. "value": "getAttr()"
  2689. },
  2690. "path": {
  2691. "type": "code",
  2692. "value": "getAttr()"
  2693. },
  2694. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile"
  2695. },
  2696. "27": {
  2697. "__pLabel": {
  2698. "type": "string",
  2699. "value": "3"
  2700. },
  2701. "__pMatchSubtypes": {
  2702. "type": "boolean"
  2703. },
  2704. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  2705. },
  2706. "28": {
  2707. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2708. },
  2709. "29": {
  2710. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2711. },
  2712. "30": {
  2713. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2714. },
  2715. "31": {
  2716. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2717. },
  2718. "32": {
  2719. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2720. }
  2721. },
  2722. "edges": [
  2723. {
  2724. "src": "8",
  2725. "dest": "11"
  2726. },
  2727. {
  2728. "src": "11",
  2729. "dest": "10"
  2730. },
  2731. {
  2732. "src": "13",
  2733. "dest": "14"
  2734. },
  2735. {
  2736. "src": "14",
  2737. "dest": "12"
  2738. },
  2739. {
  2740. "src": "7",
  2741. "dest": "15"
  2742. },
  2743. {
  2744. "src": "15",
  2745. "dest": "12"
  2746. },
  2747. {
  2748. "src": "7",
  2749. "dest": "16"
  2750. },
  2751. {
  2752. "src": "16",
  2753. "dest": "13"
  2754. },
  2755. {
  2756. "src": "7",
  2757. "dest": "17"
  2758. },
  2759. {
  2760. "src": "17",
  2761. "dest": "14"
  2762. },
  2763. {
  2764. "src": "18",
  2765. "dest": "20"
  2766. },
  2767. {
  2768. "src": "20",
  2769. "dest": "19"
  2770. },
  2771. {
  2772. "src": "8",
  2773. "dest": "25"
  2774. },
  2775. {
  2776. "src": "25",
  2777. "dest": "24"
  2778. },
  2779. {
  2780. "src": "18",
  2781. "dest": "27"
  2782. },
  2783. {
  2784. "src": "27",
  2785. "dest": "26"
  2786. },
  2787. {
  2788. "src": "9",
  2789. "dest": "28"
  2790. },
  2791. {
  2792. "src": "28",
  2793. "dest": "18"
  2794. },
  2795. {
  2796. "src": "9",
  2797. "dest": "29"
  2798. },
  2799. {
  2800. "src": "29",
  2801. "dest": "19"
  2802. },
  2803. {
  2804. "src": "9",
  2805. "dest": "30"
  2806. },
  2807. {
  2808. "src": "30",
  2809. "dest": "20"
  2810. },
  2811. {
  2812. "src": "9",
  2813. "dest": "31"
  2814. },
  2815. {
  2816. "src": "31",
  2817. "dest": "26"
  2818. },
  2819. {
  2820. "src": "9",
  2821. "dest": "32"
  2822. },
  2823. {
  2824. "src": "32",
  2825. "dest": "27"
  2826. }
  2827. ],
  2828. "metamodels": [
  2829. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  2830. "/Formalisms/GUI/GUI.pattern",
  2831. "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern",
  2832. "/Formalisms/GenericGraph/GenericGraph.pattern"
  2833. ]
  2834. }
  2835. }