R_CompileCode.model 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337
  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": "CodeIcon"
  284. },
  285. "position": {
  286. "type": "list<double>",
  287. "value": [
  288. 264,
  289. 301
  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. "1": {
  316. "textContent": {
  317. "type": "string",
  318. "value": "</>"
  319. },
  320. "style": {
  321. "type": "map<string,string>",
  322. "value": {
  323. "stroke": "#000000",
  324. "stroke-dasharray": "",
  325. "fill": "#ffffff",
  326. "fill-opacity": 0.95,
  327. "font-size": "100px",
  328. "stroke-width": 1,
  329. "arrow-start": "none",
  330. "arrow-end": "none"
  331. }
  332. },
  333. "mapper": {
  334. "type": "code",
  335. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  336. },
  337. "parser": {
  338. "type": "code",
  339. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  340. },
  341. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  342. "position": {
  343. "type": "list<double>",
  344. "value": [
  345. 1,
  346. 1
  347. ]
  348. },
  349. "orientation": {
  350. "type": "double",
  351. "value": 0
  352. },
  353. "scale": {
  354. "type": "list<double>",
  355. "value": [
  356. 1,
  357. 1
  358. ]
  359. }
  360. },
  361. "__pLabelText": {
  362. "position": {
  363. "type": "list<double>",
  364. "value": [
  365. 0,
  366. 0
  367. ]
  368. },
  369. "orientation": {
  370. "type": "double",
  371. "value": 0
  372. },
  373. "scale": {
  374. "type": "list<double>",
  375. "value": [
  376. 1,
  377. 1
  378. ]
  379. },
  380. "textContent": {
  381. "type": "string",
  382. "value": "0"
  383. },
  384. "style": {
  385. "type": "map<string,string>",
  386. "value": {
  387. "stroke": "#6000ff",
  388. "fill": "#6000ff",
  389. "font-size": "15px",
  390. "opacity": "1"
  391. }
  392. },
  393. "mapper": {
  394. "type": "code",
  395. "value": "({'textContent':getAttr('__pLabel')})"
  396. },
  397. "parser": {
  398. "type": "code",
  399. "value": "({'__pLabel':getAttr('textContent')})"
  400. },
  401. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  402. }
  403. },
  404. "edges": []
  405. }
  406. },
  407. "$asuri": {
  408. "type": "string",
  409. "value": "/Formalisms/ActionCode/ActionCode.pattern/__pCode/10.instance"
  410. },
  411. "$type": "/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon"
  412. },
  413. "11": {
  414. "typename": {
  415. "type": "string",
  416. "value": "FileIcon"
  417. },
  418. "position": {
  419. "type": "list<double>",
  420. "value": [
  421. 293,
  422. 434
  423. ]
  424. },
  425. "orientation": {
  426. "type": "double",
  427. "value": 0
  428. },
  429. "scale": {
  430. "type": "list<double>",
  431. "value": [
  432. 1,
  433. 1
  434. ]
  435. },
  436. "mapper": {
  437. "type": "code",
  438. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  439. },
  440. "parser": {
  441. "type": "code",
  442. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  443. },
  444. "$contents": {
  445. "type": "map<string,*>",
  446. "value": {
  447. "nodes": {
  448. "22": {
  449. "segments": {
  450. "type": "string",
  451. "value": "m0,0 l60,0 l30,30 l0,90 l-90,0 l0,-120 l60,0 l0,30 l30,0"
  452. },
  453. "style": {
  454. "type": "map<string,string>",
  455. "value": {
  456. "stroke": "#000000",
  457. "stroke-dasharray": "",
  458. "fill": "#ffffff",
  459. "fill-opacity": 0.75,
  460. "font-size": "20px",
  461. "stroke-width": 3,
  462. "arrow-start": "none",
  463. "arrow-end": "none"
  464. }
  465. },
  466. "mapper": {
  467. "type": "code",
  468. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  469. },
  470. "parser": {
  471. "type": "code",
  472. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  473. },
  474. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  475. "position": {
  476. "type": "list<double>",
  477. "value": [
  478. 2,
  479. 1
  480. ]
  481. },
  482. "orientation": {
  483. "type": "double",
  484. "value": 0
  485. },
  486. "scale": {
  487. "type": "list<double>",
  488. "value": [
  489. 1,
  490. 1
  491. ]
  492. }
  493. },
  494. "23": {
  495. "textContent": {
  496. "type": "string",
  497. "value": "ActionCode.java"
  498. },
  499. "style": {
  500. "type": "map<string,string>",
  501. "value": {
  502. "stroke": "#000000",
  503. "fill": "#ffffff",
  504. "fill-opacity": 0.75,
  505. "font-size": "13px"
  506. }
  507. },
  508. "mapper": {
  509. "type": "code",
  510. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  511. },
  512. "parser": {
  513. "type": "code",
  514. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  515. },
  516. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  517. "position": {
  518. "type": "list<double>",
  519. "value": [
  520. 4,
  521. 126
  522. ]
  523. },
  524. "orientation": {
  525. "type": "double",
  526. "value": 0
  527. },
  528. "scale": {
  529. "type": "list<double>",
  530. "value": [
  531. 1,
  532. 1
  533. ]
  534. }
  535. },
  536. "24": {
  537. "distance": {
  538. "type": "double",
  539. "value": 5
  540. },
  541. "alignment": {
  542. "type": "ENUM(\"right\",\"left\",\"center\")",
  543. "value": "\"left\""
  544. },
  545. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  546. "position": {
  547. "type": "list<double>",
  548. "value": [
  549. 27.99899850809561,
  550. 117.99900000000002
  551. ]
  552. },
  553. "orientation": {
  554. "type": "double",
  555. "value": 0
  556. },
  557. "scale": {
  558. "type": "list<double>",
  559. "value": [
  560. 1,
  561. 1
  562. ]
  563. },
  564. "link-style": {
  565. "type": "map<string,string>",
  566. "value": {
  567. "stroke": "#00ff00",
  568. "stroke-dasharray": "",
  569. "stroke-opacity": 1,
  570. "arrow-start": "none",
  571. "arrow-end": "classic-wide-long"
  572. }
  573. }
  574. },
  575. "__pLabelText": {
  576. "position": {
  577. "type": "list<double>",
  578. "value": [
  579. 0,
  580. 0
  581. ]
  582. },
  583. "orientation": {
  584. "type": "double",
  585. "value": 0
  586. },
  587. "scale": {
  588. "type": "list<double>",
  589. "value": [
  590. 1,
  591. 1
  592. ]
  593. },
  594. "textContent": {
  595. "type": "string",
  596. "value": "2"
  597. },
  598. "style": {
  599. "type": "map<string,string>",
  600. "value": {
  601. "stroke": "#6000ff",
  602. "fill": "#6000ff",
  603. "font-size": "15px",
  604. "opacity": "1"
  605. }
  606. },
  607. "mapper": {
  608. "type": "code",
  609. "value": "({'textContent':getAttr('__pLabel')})"
  610. },
  611. "parser": {
  612. "type": "code",
  613. "value": "({'__pLabel':getAttr('textContent')})"
  614. },
  615. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  616. }
  617. },
  618. "edges": [
  619. {
  620. "src": "23",
  621. "dest": "24"
  622. },
  623. {
  624. "src": "24",
  625. "dest": "22"
  626. }
  627. ]
  628. }
  629. },
  630. "$asuri": {
  631. "type": "string",
  632. "value": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile/11.instance"
  633. },
  634. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon"
  635. },
  636. "12": {
  637. "link-style": {
  638. "type": "map<string,string>",
  639. "value": {
  640. "stroke": "#a000ff",
  641. "stroke-dasharray": "",
  642. "stroke-opacity": 1,
  643. "stroke-width": 1,
  644. "arrow-start": "none",
  645. "arrow-end": "classic-wide-long"
  646. }
  647. },
  648. "typename": {
  649. "type": "string",
  650. "value": "GenericLinkLink"
  651. },
  652. "position": {
  653. "type": "list<double>",
  654. "value": [
  655. 324,
  656. 404.5
  657. ]
  658. },
  659. "orientation": {
  660. "type": "double",
  661. "value": 0
  662. },
  663. "scale": {
  664. "type": "list<double>",
  665. "value": [
  666. 1,
  667. 1
  668. ]
  669. },
  670. "mapper": {
  671. "type": "code",
  672. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  673. },
  674. "parser": {
  675. "type": "code",
  676. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  677. },
  678. "$contents": {
  679. "type": "map<string,*>",
  680. "value": {
  681. "nodes": {
  682. "__pLabelText": {
  683. "position": {
  684. "type": "list<double>",
  685. "value": [
  686. 0,
  687. 0
  688. ]
  689. },
  690. "orientation": {
  691. "type": "double",
  692. "value": 0
  693. },
  694. "scale": {
  695. "type": "list<double>",
  696. "value": [
  697. 1,
  698. 1
  699. ]
  700. },
  701. "textContent": {
  702. "type": "string",
  703. "value": "1"
  704. },
  705. "style": {
  706. "type": "map<string,string>",
  707. "value": {
  708. "stroke": "#6000ff",
  709. "fill": "#6000ff",
  710. "font-size": "15px",
  711. "opacity": "1"
  712. }
  713. },
  714. "mapper": {
  715. "type": "code",
  716. "value": "({'textContent':getAttr('__pLabel')})"
  717. },
  718. "parser": {
  719. "type": "code",
  720. "value": "({'__pLabel':getAttr('textContent')})"
  721. },
  722. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  723. }
  724. },
  725. "edges": []
  726. }
  727. },
  728. "$asuri": {
  729. "type": "string",
  730. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/12.instance"
  731. },
  732. "$segments": {
  733. "type": "map<string,list<string>>",
  734. "value": {
  735. "/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon/10.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/12.instance": "M328,391L328,413.5",
  736. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/12.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/11.instance": "M328.0000000000002,413.57806804258155L328.0000000000002,435.9993343209877"
  737. }
  738. },
  739. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  740. },
  741. "13": {
  742. "typename": {
  743. "type": "string",
  744. "value": "CodeIcon"
  745. },
  746. "position": {
  747. "type": "list<double>",
  748. "value": [
  749. 667,
  750. 310
  751. ]
  752. },
  753. "orientation": {
  754. "type": "double",
  755. "value": 0
  756. },
  757. "scale": {
  758. "type": "list<double>",
  759. "value": [
  760. 1,
  761. 1
  762. ]
  763. },
  764. "mapper": {
  765. "type": "code",
  766. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  767. },
  768. "parser": {
  769. "type": "code",
  770. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  771. },
  772. "$contents": {
  773. "type": "map<string,*>",
  774. "value": {
  775. "nodes": {
  776. "1": {
  777. "textContent": {
  778. "type": "string",
  779. "value": "</>"
  780. },
  781. "style": {
  782. "type": "map<string,string>",
  783. "value": {
  784. "stroke": "#000000",
  785. "stroke-dasharray": "",
  786. "fill": "#ffffff",
  787. "fill-opacity": 0.95,
  788. "font-size": "100px",
  789. "stroke-width": 1,
  790. "arrow-start": "none",
  791. "arrow-end": "none"
  792. }
  793. },
  794. "mapper": {
  795. "type": "code",
  796. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  797. },
  798. "parser": {
  799. "type": "code",
  800. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  801. },
  802. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  803. "position": {
  804. "type": "list<double>",
  805. "value": [
  806. 1,
  807. 1
  808. ]
  809. },
  810. "orientation": {
  811. "type": "double",
  812. "value": 0
  813. },
  814. "scale": {
  815. "type": "list<double>",
  816. "value": [
  817. 1,
  818. 1
  819. ]
  820. }
  821. },
  822. "__pLabelText": {
  823. "position": {
  824. "type": "list<double>",
  825. "value": [
  826. 0,
  827. 0
  828. ]
  829. },
  830. "orientation": {
  831. "type": "double",
  832. "value": 0
  833. },
  834. "scale": {
  835. "type": "list<double>",
  836. "value": [
  837. 1,
  838. 1
  839. ]
  840. },
  841. "textContent": {
  842. "type": "string",
  843. "value": "0"
  844. },
  845. "style": {
  846. "type": "map<string,string>",
  847. "value": {
  848. "stroke": "#6000ff",
  849. "fill": "#6000ff",
  850. "font-size": "15px",
  851. "opacity": "1"
  852. }
  853. },
  854. "mapper": {
  855. "type": "code",
  856. "value": "({'textContent':getAttr('__pLabel')})"
  857. },
  858. "parser": {
  859. "type": "code",
  860. "value": "({'__pLabel':getAttr('textContent')})"
  861. },
  862. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  863. }
  864. },
  865. "edges": []
  866. }
  867. },
  868. "$asuri": {
  869. "type": "string",
  870. "value": "/Formalisms/ActionCode/ActionCode.pattern/__pCode/13.instance"
  871. },
  872. "$type": "/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon"
  873. },
  874. "14": {
  875. "typename": {
  876. "type": "string",
  877. "value": "FileIcon"
  878. },
  879. "position": {
  880. "type": "list<double>",
  881. "value": [
  882. 696,
  883. 443
  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. "mapper": {
  898. "type": "code",
  899. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  900. },
  901. "parser": {
  902. "type": "code",
  903. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  904. },
  905. "$contents": {
  906. "type": "map<string,*>",
  907. "value": {
  908. "nodes": {
  909. "22": {
  910. "segments": {
  911. "type": "string",
  912. "value": "m0,0 l60,0 l30,30 l0,90 l-90,0 l0,-120 l60,0 l0,30 l30,0"
  913. },
  914. "style": {
  915. "type": "map<string,string>",
  916. "value": {
  917. "stroke": "#000000",
  918. "stroke-dasharray": "",
  919. "fill": "#ffffff",
  920. "fill-opacity": 0.75,
  921. "font-size": "20px",
  922. "stroke-width": 3,
  923. "arrow-start": "none",
  924. "arrow-end": "none"
  925. }
  926. },
  927. "mapper": {
  928. "type": "code",
  929. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  930. },
  931. "parser": {
  932. "type": "code",
  933. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  934. },
  935. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  936. "position": {
  937. "type": "list<double>",
  938. "value": [
  939. 2,
  940. 1
  941. ]
  942. },
  943. "orientation": {
  944. "type": "double",
  945. "value": 0
  946. },
  947. "scale": {
  948. "type": "list<double>",
  949. "value": [
  950. 1,
  951. 1
  952. ]
  953. }
  954. },
  955. "23": {
  956. "textContent": {
  957. "type": "string",
  958. "value": "ActionCode.java"
  959. },
  960. "style": {
  961. "type": "map<string,string>",
  962. "value": {
  963. "stroke": "#000000",
  964. "fill": "#ffffff",
  965. "fill-opacity": 0.75,
  966. "font-size": "13px"
  967. }
  968. },
  969. "mapper": {
  970. "type": "code",
  971. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  972. },
  973. "parser": {
  974. "type": "code",
  975. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  976. },
  977. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  978. "position": {
  979. "type": "list<double>",
  980. "value": [
  981. 4,
  982. 126
  983. ]
  984. },
  985. "orientation": {
  986. "type": "double",
  987. "value": 0
  988. },
  989. "scale": {
  990. "type": "list<double>",
  991. "value": [
  992. 1,
  993. 1
  994. ]
  995. }
  996. },
  997. "24": {
  998. "distance": {
  999. "type": "double",
  1000. "value": 5
  1001. },
  1002. "alignment": {
  1003. "type": "ENUM(\"right\",\"left\",\"center\")",
  1004. "value": "\"left\""
  1005. },
  1006. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1007. "position": {
  1008. "type": "list<double>",
  1009. "value": [
  1010. 27.99899850809561,
  1011. 117.99900000000002
  1012. ]
  1013. },
  1014. "orientation": {
  1015. "type": "double",
  1016. "value": 0
  1017. },
  1018. "scale": {
  1019. "type": "list<double>",
  1020. "value": [
  1021. 1,
  1022. 1
  1023. ]
  1024. },
  1025. "link-style": {
  1026. "type": "map<string,string>",
  1027. "value": {
  1028. "stroke": "#00ff00",
  1029. "stroke-dasharray": "",
  1030. "stroke-opacity": 1,
  1031. "arrow-start": "none",
  1032. "arrow-end": "classic-wide-long"
  1033. }
  1034. }
  1035. },
  1036. "__pLabelText": {
  1037. "position": {
  1038. "type": "list<double>",
  1039. "value": [
  1040. 0,
  1041. 0
  1042. ]
  1043. },
  1044. "orientation": {
  1045. "type": "double",
  1046. "value": 0
  1047. },
  1048. "scale": {
  1049. "type": "list<double>",
  1050. "value": [
  1051. 1,
  1052. 1
  1053. ]
  1054. },
  1055. "textContent": {
  1056. "type": "string",
  1057. "value": "2"
  1058. },
  1059. "style": {
  1060. "type": "map<string,string>",
  1061. "value": {
  1062. "stroke": "#6000ff",
  1063. "fill": "#6000ff",
  1064. "font-size": "15px",
  1065. "opacity": "1"
  1066. }
  1067. },
  1068. "mapper": {
  1069. "type": "code",
  1070. "value": "({'textContent':getAttr('__pLabel')})"
  1071. },
  1072. "parser": {
  1073. "type": "code",
  1074. "value": "({'__pLabel':getAttr('textContent')})"
  1075. },
  1076. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1077. }
  1078. },
  1079. "edges": [
  1080. {
  1081. "src": "23",
  1082. "dest": "24"
  1083. },
  1084. {
  1085. "src": "24",
  1086. "dest": "22"
  1087. }
  1088. ]
  1089. }
  1090. },
  1091. "$asuri": {
  1092. "type": "string",
  1093. "value": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile/14.instance"
  1094. },
  1095. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon"
  1096. },
  1097. "16": {
  1098. "typename": {
  1099. "type": "string",
  1100. "value": "CodeIcon"
  1101. },
  1102. "position": {
  1103. "type": "list<double>",
  1104. "value": [
  1105. 1114,
  1106. 313
  1107. ]
  1108. },
  1109. "orientation": {
  1110. "type": "double",
  1111. "value": 0
  1112. },
  1113. "scale": {
  1114. "type": "list<double>",
  1115. "value": [
  1116. 1,
  1117. 1
  1118. ]
  1119. },
  1120. "mapper": {
  1121. "type": "code",
  1122. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1123. },
  1124. "parser": {
  1125. "type": "code",
  1126. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1127. },
  1128. "$contents": {
  1129. "type": "map<string,*>",
  1130. "value": {
  1131. "nodes": {
  1132. "1": {
  1133. "textContent": {
  1134. "type": "string",
  1135. "value": "</>"
  1136. },
  1137. "style": {
  1138. "type": "map<string,string>",
  1139. "value": {
  1140. "stroke": "#000000",
  1141. "stroke-dasharray": "",
  1142. "fill": "#ffffff",
  1143. "fill-opacity": 0.95,
  1144. "font-size": "100px",
  1145. "stroke-width": 1,
  1146. "arrow-start": "none",
  1147. "arrow-end": "none"
  1148. }
  1149. },
  1150. "mapper": {
  1151. "type": "code",
  1152. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1153. },
  1154. "parser": {
  1155. "type": "code",
  1156. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1157. },
  1158. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1159. "position": {
  1160. "type": "list<double>",
  1161. "value": [
  1162. 1,
  1163. 1
  1164. ]
  1165. },
  1166. "orientation": {
  1167. "type": "double",
  1168. "value": 0
  1169. },
  1170. "scale": {
  1171. "type": "list<double>",
  1172. "value": [
  1173. 1,
  1174. 1
  1175. ]
  1176. }
  1177. },
  1178. "__pLabelText": {
  1179. "position": {
  1180. "type": "list<double>",
  1181. "value": [
  1182. 0,
  1183. 0
  1184. ]
  1185. },
  1186. "orientation": {
  1187. "type": "double",
  1188. "value": 0
  1189. },
  1190. "scale": {
  1191. "type": "list<double>",
  1192. "value": [
  1193. 1,
  1194. 1
  1195. ]
  1196. },
  1197. "textContent": {
  1198. "type": "string",
  1199. "value": "0"
  1200. },
  1201. "style": {
  1202. "type": "map<string,string>",
  1203. "value": {
  1204. "stroke": "#6000ff",
  1205. "fill": "#6000ff",
  1206. "font-size": "15px",
  1207. "opacity": "1"
  1208. }
  1209. },
  1210. "mapper": {
  1211. "type": "code",
  1212. "value": "({'textContent':getAttr('__pLabel')})"
  1213. },
  1214. "parser": {
  1215. "type": "code",
  1216. "value": "({'__pLabel':getAttr('textContent')})"
  1217. },
  1218. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1219. }
  1220. },
  1221. "edges": []
  1222. }
  1223. },
  1224. "$asuri": {
  1225. "type": "string",
  1226. "value": "/Formalisms/ActionCode/ActionCode.pattern/__pCode/16.instance"
  1227. },
  1228. "$type": "/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon"
  1229. },
  1230. "17": {
  1231. "typename": {
  1232. "type": "string",
  1233. "value": "FileIcon"
  1234. },
  1235. "position": {
  1236. "type": "list<double>",
  1237. "value": [
  1238. 1143,
  1239. 446
  1240. ]
  1241. },
  1242. "orientation": {
  1243. "type": "double",
  1244. "value": 0
  1245. },
  1246. "scale": {
  1247. "type": "list<double>",
  1248. "value": [
  1249. 1,
  1250. 1
  1251. ]
  1252. },
  1253. "mapper": {
  1254. "type": "code",
  1255. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1256. },
  1257. "parser": {
  1258. "type": "code",
  1259. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1260. },
  1261. "$contents": {
  1262. "type": "map<string,*>",
  1263. "value": {
  1264. "nodes": {
  1265. "22": {
  1266. "segments": {
  1267. "type": "string",
  1268. "value": "m0,0 l60,0 l30,30 l0,90 l-90,0 l0,-120 l60,0 l0,30 l30,0"
  1269. },
  1270. "style": {
  1271. "type": "map<string,string>",
  1272. "value": {
  1273. "stroke": "#000000",
  1274. "stroke-dasharray": "",
  1275. "fill": "#ffffff",
  1276. "fill-opacity": 0.75,
  1277. "font-size": "20px",
  1278. "stroke-width": 3,
  1279. "arrow-start": "none",
  1280. "arrow-end": "none"
  1281. }
  1282. },
  1283. "mapper": {
  1284. "type": "code",
  1285. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1286. },
  1287. "parser": {
  1288. "type": "code",
  1289. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1290. },
  1291. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1292. "position": {
  1293. "type": "list<double>",
  1294. "value": [
  1295. 2,
  1296. 1
  1297. ]
  1298. },
  1299. "orientation": {
  1300. "type": "double",
  1301. "value": 0
  1302. },
  1303. "scale": {
  1304. "type": "list<double>",
  1305. "value": [
  1306. 1,
  1307. 1
  1308. ]
  1309. }
  1310. },
  1311. "23": {
  1312. "textContent": {
  1313. "type": "string",
  1314. "value": "ActionCode.java"
  1315. },
  1316. "style": {
  1317. "type": "map<string,string>",
  1318. "value": {
  1319. "stroke": "#000000",
  1320. "fill": "#ffffff",
  1321. "fill-opacity": 0.75,
  1322. "font-size": "13px"
  1323. }
  1324. },
  1325. "mapper": {
  1326. "type": "code",
  1327. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1328. },
  1329. "parser": {
  1330. "type": "code",
  1331. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1332. },
  1333. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1334. "position": {
  1335. "type": "list<double>",
  1336. "value": [
  1337. 4,
  1338. 126
  1339. ]
  1340. },
  1341. "orientation": {
  1342. "type": "double",
  1343. "value": 0
  1344. },
  1345. "scale": {
  1346. "type": "list<double>",
  1347. "value": [
  1348. 1,
  1349. 1
  1350. ]
  1351. }
  1352. },
  1353. "24": {
  1354. "distance": {
  1355. "type": "double",
  1356. "value": 5
  1357. },
  1358. "alignment": {
  1359. "type": "ENUM(\"right\",\"left\",\"center\")",
  1360. "value": "\"left\""
  1361. },
  1362. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Below",
  1363. "position": {
  1364. "type": "list<double>",
  1365. "value": [
  1366. 27.99899850809561,
  1367. 117.99900000000002
  1368. ]
  1369. },
  1370. "orientation": {
  1371. "type": "double",
  1372. "value": 0
  1373. },
  1374. "scale": {
  1375. "type": "list<double>",
  1376. "value": [
  1377. 1,
  1378. 1
  1379. ]
  1380. },
  1381. "link-style": {
  1382. "type": "map<string,string>",
  1383. "value": {
  1384. "stroke": "#00ff00",
  1385. "stroke-dasharray": "",
  1386. "stroke-opacity": 1,
  1387. "arrow-start": "none",
  1388. "arrow-end": "classic-wide-long"
  1389. }
  1390. }
  1391. },
  1392. "__pLabelText": {
  1393. "position": {
  1394. "type": "list<double>",
  1395. "value": [
  1396. 0,
  1397. 0
  1398. ]
  1399. },
  1400. "orientation": {
  1401. "type": "double",
  1402. "value": 0
  1403. },
  1404. "scale": {
  1405. "type": "list<double>",
  1406. "value": [
  1407. 1,
  1408. 1
  1409. ]
  1410. },
  1411. "textContent": {
  1412. "type": "string",
  1413. "value": "2"
  1414. },
  1415. "style": {
  1416. "type": "map<string,string>",
  1417. "value": {
  1418. "stroke": "#6000ff",
  1419. "fill": "#6000ff",
  1420. "font-size": "15px",
  1421. "opacity": "1"
  1422. }
  1423. },
  1424. "mapper": {
  1425. "type": "code",
  1426. "value": "({'textContent':getAttr('__pLabel')})"
  1427. },
  1428. "parser": {
  1429. "type": "code",
  1430. "value": "({'__pLabel':getAttr('textContent')})"
  1431. },
  1432. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1433. }
  1434. },
  1435. "edges": [
  1436. {
  1437. "src": "23",
  1438. "dest": "24"
  1439. },
  1440. {
  1441. "src": "24",
  1442. "dest": "22"
  1443. }
  1444. ]
  1445. }
  1446. },
  1447. "$asuri": {
  1448. "type": "string",
  1449. "value": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile/17.instance"
  1450. },
  1451. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon"
  1452. },
  1453. "18": {
  1454. "link-style": {
  1455. "type": "map<string,string>",
  1456. "value": {
  1457. "stroke": "#a000ff",
  1458. "stroke-dasharray": "",
  1459. "stroke-opacity": 1,
  1460. "stroke-width": 1,
  1461. "arrow-start": "none",
  1462. "arrow-end": "classic-wide-long"
  1463. }
  1464. },
  1465. "typename": {
  1466. "type": "string",
  1467. "value": "GenericLinkLink"
  1468. },
  1469. "position": {
  1470. "type": "list<double>",
  1471. "value": [
  1472. 1174,
  1473. 416.5
  1474. ]
  1475. },
  1476. "orientation": {
  1477. "type": "double",
  1478. "value": 0
  1479. },
  1480. "scale": {
  1481. "type": "list<double>",
  1482. "value": [
  1483. 1,
  1484. 1
  1485. ]
  1486. },
  1487. "mapper": {
  1488. "type": "code",
  1489. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1490. },
  1491. "parser": {
  1492. "type": "code",
  1493. "value": "/* mapping and parsing code is disabled by default because pattern attribute values are code */"
  1494. },
  1495. "$contents": {
  1496. "type": "map<string,*>",
  1497. "value": {
  1498. "nodes": {
  1499. "__pLabelText": {
  1500. "position": {
  1501. "type": "list<double>",
  1502. "value": [
  1503. 0,
  1504. 0
  1505. ]
  1506. },
  1507. "orientation": {
  1508. "type": "double",
  1509. "value": 0
  1510. },
  1511. "scale": {
  1512. "type": "list<double>",
  1513. "value": [
  1514. 1,
  1515. 1
  1516. ]
  1517. },
  1518. "textContent": {
  1519. "type": "string",
  1520. "value": "1"
  1521. },
  1522. "style": {
  1523. "type": "map<string,string>",
  1524. "value": {
  1525. "stroke": "#6000ff",
  1526. "fill": "#6000ff",
  1527. "font-size": "15px",
  1528. "opacity": "1"
  1529. }
  1530. },
  1531. "mapper": {
  1532. "type": "code",
  1533. "value": "({'textContent':getAttr('__pLabel')})"
  1534. },
  1535. "parser": {
  1536. "type": "code",
  1537. "value": "({'__pLabel':getAttr('textContent')})"
  1538. },
  1539. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text"
  1540. }
  1541. },
  1542. "edges": []
  1543. }
  1544. },
  1545. "$asuri": {
  1546. "type": "string",
  1547. "value": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink/18.instance"
  1548. },
  1549. "$segments": {
  1550. "type": "map<string,list<string>>",
  1551. "value": {
  1552. "/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon/16.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/18.instance": "M1178,403L1178,425.5",
  1553. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/18.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/17.instance": "M1178.0000000000002,425.57806804258155L1178.0000000000002,447.9993343209877"
  1554. }
  1555. },
  1556. "$type": "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink"
  1557. },
  1558. "19": {
  1559. "link-style": {
  1560. "type": "map<string,string>",
  1561. "value": {
  1562. "stroke": "#00ff00",
  1563. "stroke-dasharray": "",
  1564. "stroke-opacity": 0.2,
  1565. "stroke-width": 1,
  1566. "arrow-start": "none",
  1567. "arrow-end": "classic-wide-long"
  1568. }
  1569. },
  1570. "typename": {
  1571. "type": "string",
  1572. "value": "PatternContentsLink"
  1573. },
  1574. "position": {
  1575. "type": "list<double>",
  1576. "value": [
  1577. "249.35554433195796,50%",
  1578. "269.3567540091151,50%"
  1579. ]
  1580. },
  1581. "orientation": {
  1582. "type": "double",
  1583. "value": 0
  1584. },
  1585. "scale": {
  1586. "type": "list<double>",
  1587. "value": [
  1588. 1,
  1589. 1
  1590. ]
  1591. },
  1592. "mapper": {
  1593. "type": "code",
  1594. "value": ""
  1595. },
  1596. "parser": {
  1597. "type": "code",
  1598. "value": ""
  1599. },
  1600. "$contents": {
  1601. "type": "map<string,*>",
  1602. "value": {
  1603. "nodes": {},
  1604. "edges": []
  1605. }
  1606. },
  1607. "$asuri": {
  1608. "type": "string",
  1609. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/19.instance"
  1610. },
  1611. "$segments": {
  1612. "type": "map<string,list<string>>",
  1613. "value": {
  1614. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon/7.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/19.instance": "M162,181L249.35554433195796,269.3567540091151",
  1615. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/19.instance--/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon/10.instance": "M249.35537409923813,269.35658182530386L336.49965971738527,357.499655817298"
  1616. }
  1617. },
  1618. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1619. },
  1620. "20": {
  1621. "link-style": {
  1622. "type": "map<string,string>",
  1623. "value": {
  1624. "stroke": "#00ff00",
  1625. "stroke-dasharray": "",
  1626. "stroke-opacity": 0.2,
  1627. "stroke-width": 1,
  1628. "arrow-start": "none",
  1629. "arrow-end": "classic-wide-long"
  1630. }
  1631. },
  1632. "typename": {
  1633. "type": "string",
  1634. "value": "PatternContentsLink"
  1635. },
  1636. "position": {
  1637. "type": "list<double>",
  1638. "value": [
  1639. "252.5731805859029,50%",
  1640. "343.1309972918924,50%"
  1641. ]
  1642. },
  1643. "orientation": {
  1644. "type": "double",
  1645. "value": 0
  1646. },
  1647. "scale": {
  1648. "type": "list<double>",
  1649. "value": [
  1650. 1,
  1651. 1
  1652. ]
  1653. },
  1654. "mapper": {
  1655. "type": "code",
  1656. "value": ""
  1657. },
  1658. "parser": {
  1659. "type": "code",
  1660. "value": ""
  1661. },
  1662. "$contents": {
  1663. "type": "map<string,*>",
  1664. "value": {
  1665. "nodes": {},
  1666. "edges": []
  1667. }
  1668. },
  1669. "$asuri": {
  1670. "type": "string",
  1671. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/20.instance"
  1672. },
  1673. "$segments": {
  1674. "type": "map<string,list<string>>",
  1675. "value": {
  1676. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon/7.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/20.instance": "M162,181L252.5731805859029,343.1309972918924",
  1677. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/20.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/11.instance": "M252.53647194425508,343.06528679524115L342.99964513731385,504.99936477618616"
  1678. }
  1679. },
  1680. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1681. },
  1682. "21": {
  1683. "link-style": {
  1684. "type": "map<string,string>",
  1685. "value": {
  1686. "stroke": "#00ff00",
  1687. "stroke-dasharray": "",
  1688. "stroke-opacity": 0.2,
  1689. "stroke-width": 1,
  1690. "arrow-start": "none",
  1691. "arrow-end": "classic-wide-long"
  1692. }
  1693. },
  1694. "typename": {
  1695. "type": "string",
  1696. "value": "PatternContentsLink"
  1697. },
  1698. "position": {
  1699. "type": "list<double>",
  1700. "value": [
  1701. "245.08736840671082,50%",
  1702. "297.37236840096546,50%"
  1703. ]
  1704. },
  1705. "orientation": {
  1706. "type": "double",
  1707. "value": 0
  1708. },
  1709. "scale": {
  1710. "type": "list<double>",
  1711. "value": [
  1712. 1,
  1713. 1
  1714. ]
  1715. },
  1716. "mapper": {
  1717. "type": "code",
  1718. "value": ""
  1719. },
  1720. "parser": {
  1721. "type": "code",
  1722. "value": ""
  1723. },
  1724. "$contents": {
  1725. "type": "map<string,*>",
  1726. "value": {
  1727. "nodes": {},
  1728. "edges": []
  1729. }
  1730. },
  1731. "$asuri": {
  1732. "type": "string",
  1733. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/21.instance"
  1734. },
  1735. "$segments": {
  1736. "type": "map<string,list<string>>",
  1737. "value": {
  1738. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/NACIcon/7.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/21.instance": "M162,181L245.08736840671082,297.37236840096546",
  1739. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/21.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/12.instance": "M245.04350027523816,297.31092659031845L327.9994485866745,413.4992276891675"
  1740. }
  1741. },
  1742. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1743. },
  1744. "22": {
  1745. "link-style": {
  1746. "type": "map<string,string>",
  1747. "value": {
  1748. "stroke": "#00ff00",
  1749. "stroke-dasharray": "",
  1750. "stroke-opacity": 0.2,
  1751. "stroke-width": 1,
  1752. "arrow-start": "none",
  1753. "arrow-end": "classic-wide-long"
  1754. }
  1755. },
  1756. "typename": {
  1757. "type": "string",
  1758. "value": "PatternContentsLink"
  1759. },
  1760. "position": {
  1761. "type": "list<double>",
  1762. "value": [
  1763. "655.25,50%",
  1764. "273.75,50%"
  1765. ]
  1766. },
  1767. "orientation": {
  1768. "type": "double",
  1769. "value": 0
  1770. },
  1771. "scale": {
  1772. "type": "list<double>",
  1773. "value": [
  1774. 1,
  1775. 1
  1776. ]
  1777. },
  1778. "mapper": {
  1779. "type": "code",
  1780. "value": ""
  1781. },
  1782. "parser": {
  1783. "type": "code",
  1784. "value": ""
  1785. },
  1786. "$contents": {
  1787. "type": "map<string,*>",
  1788. "value": {
  1789. "nodes": {},
  1790. "edges": []
  1791. }
  1792. },
  1793. "$asuri": {
  1794. "type": "string",
  1795. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/22.instance"
  1796. },
  1797. "$segments": {
  1798. "type": "map<string,list<string>>",
  1799. "value": {
  1800. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/8.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/22.instance": "M571,181L655.25,273.75",
  1801. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/22.instance--/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon/13.instance": "M655.3509382185352,273.86112189636975L739.4996766525439,366.499644029952"
  1802. }
  1803. },
  1804. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1805. },
  1806. "23": {
  1807. "link-style": {
  1808. "type": "map<string,string>",
  1809. "value": {
  1810. "stroke": "#00ff00",
  1811. "stroke-dasharray": "",
  1812. "stroke-opacity": 0.2,
  1813. "stroke-width": 1,
  1814. "arrow-start": "none",
  1815. "arrow-end": "classic-wide-long"
  1816. }
  1817. },
  1818. "typename": {
  1819. "type": "string",
  1820. "value": "PatternContentsLink"
  1821. },
  1822. "position": {
  1823. "type": "list<double>",
  1824. "value": [
  1825. "658.569813823203,50%",
  1826. "347.632845732152,50%"
  1827. ]
  1828. },
  1829. "orientation": {
  1830. "type": "double",
  1831. "value": 0
  1832. },
  1833. "scale": {
  1834. "type": "list<double>",
  1835. "value": [
  1836. 1,
  1837. 1
  1838. ]
  1839. },
  1840. "mapper": {
  1841. "type": "code",
  1842. "value": ""
  1843. },
  1844. "parser": {
  1845. "type": "code",
  1846. "value": ""
  1847. },
  1848. "$contents": {
  1849. "type": "map<string,*>",
  1850. "value": {
  1851. "nodes": {},
  1852. "edges": []
  1853. }
  1854. },
  1855. "$asuri": {
  1856. "type": "string",
  1857. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/23.instance"
  1858. },
  1859. "$segments": {
  1860. "type": "map<string,list<string>>",
  1861. "value": {
  1862. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/LHSIcon/8.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/23.instance": "M571,181L658.569813823203,347.632845732152",
  1863. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/23.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/14.instance": "M658.5347955090308,347.5662108828989L745.9996659626314,513.9993643746072"
  1864. }
  1865. },
  1866. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1867. },
  1868. "24": {
  1869. "link-style": {
  1870. "type": "map<string,string>",
  1871. "value": {
  1872. "stroke": "#00ff00",
  1873. "stroke-dasharray": "",
  1874. "stroke-opacity": 0.2,
  1875. "stroke-width": 1,
  1876. "arrow-start": "none",
  1877. "arrow-end": "classic-wide-long"
  1878. }
  1879. },
  1880. "typename": {
  1881. "type": "string",
  1882. "value": "PatternContentsLink"
  1883. },
  1884. "position": {
  1885. "type": "list<double>",
  1886. "value": [
  1887. "1058.370990550085,50%",
  1888. "274.8393867806671,50%"
  1889. ]
  1890. },
  1891. "orientation": {
  1892. "type": "double",
  1893. "value": 0
  1894. },
  1895. "scale": {
  1896. "type": "list<double>",
  1897. "value": [
  1898. 1,
  1899. 1
  1900. ]
  1901. },
  1902. "mapper": {
  1903. "type": "code",
  1904. "value": ""
  1905. },
  1906. "parser": {
  1907. "type": "code",
  1908. "value": ""
  1909. },
  1910. "$contents": {
  1911. "type": "map<string,*>",
  1912. "value": {
  1913. "nodes": {},
  1914. "edges": []
  1915. }
  1916. },
  1917. "$asuri": {
  1918. "type": "string",
  1919. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/24.instance"
  1920. },
  1921. "$segments": {
  1922. "type": "map<string,list<string>>",
  1923. "value": {
  1924. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/24.instance": "M930,180L1058.370990550085,274.8393867806671",
  1925. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/24.instance--/Formalisms/ActionCode/ActionCode.defaultIcons.pattern/__pCodeIcon/16.instance": "M1058.3102669969603,274.7945247404444L1186.4993155784641,369.49949435523956"
  1926. }
  1927. },
  1928. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1929. },
  1930. "25": {
  1931. "link-style": {
  1932. "type": "map<string,string>",
  1933. "value": {
  1934. "stroke": "#00ff00",
  1935. "stroke-dasharray": "",
  1936. "stroke-opacity": 0.2,
  1937. "stroke-width": 1,
  1938. "arrow-start": "none",
  1939. "arrow-end": "classic-wide-long"
  1940. }
  1941. },
  1942. "typename": {
  1943. "type": "string",
  1944. "value": "PatternContentsLink"
  1945. },
  1946. "position": {
  1947. "type": "list<double>",
  1948. "value": [
  1949. "1061.592388752026,50%",
  1950. "348.61838406628425,50%"
  1951. ]
  1952. },
  1953. "orientation": {
  1954. "type": "double",
  1955. "value": 0
  1956. },
  1957. "scale": {
  1958. "type": "list<double>",
  1959. "value": [
  1960. 1,
  1961. 1
  1962. ]
  1963. },
  1964. "mapper": {
  1965. "type": "code",
  1966. "value": ""
  1967. },
  1968. "parser": {
  1969. "type": "code",
  1970. "value": ""
  1971. },
  1972. "$contents": {
  1973. "type": "map<string,*>",
  1974. "value": {
  1975. "nodes": {},
  1976. "edges": []
  1977. }
  1978. },
  1979. "$asuri": {
  1980. "type": "string",
  1981. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/25.instance"
  1982. },
  1983. "$segments": {
  1984. "type": "map<string,list<string>>",
  1985. "value": {
  1986. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/25.instance": "M930,180L1061.592388752026,348.61838406628425",
  1987. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/25.instance--/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern/__pFileIcon/17.instance": "M1061.5460645582837,348.5590256887514L1192.9996107216075,516.999501190805"
  1988. }
  1989. },
  1990. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  1991. },
  1992. "26": {
  1993. "link-style": {
  1994. "type": "map<string,string>",
  1995. "value": {
  1996. "stroke": "#00ff00",
  1997. "stroke-dasharray": "",
  1998. "stroke-opacity": 0.2,
  1999. "stroke-width": 1,
  2000. "arrow-start": "none",
  2001. "arrow-end": "classic-wide-long"
  2002. }
  2003. },
  2004. "typename": {
  2005. "type": "string",
  2006. "value": "PatternContentsLink"
  2007. },
  2008. "position": {
  2009. "type": "list<double>",
  2010. "value": [
  2011. "1054,50%",
  2012. "302.75,50%"
  2013. ]
  2014. },
  2015. "orientation": {
  2016. "type": "double",
  2017. "value": 0
  2018. },
  2019. "scale": {
  2020. "type": "list<double>",
  2021. "value": [
  2022. 1,
  2023. 1
  2024. ]
  2025. },
  2026. "mapper": {
  2027. "type": "code",
  2028. "value": ""
  2029. },
  2030. "parser": {
  2031. "type": "code",
  2032. "value": ""
  2033. },
  2034. "$contents": {
  2035. "type": "map<string,*>",
  2036. "value": {
  2037. "nodes": {},
  2038. "edges": []
  2039. }
  2040. },
  2041. "$asuri": {
  2042. "type": "string",
  2043. "value": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents/26.instance"
  2044. },
  2045. "$segments": {
  2046. "type": "map<string,list<string>>",
  2047. "value": {
  2048. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/RHSIcon/9.instance--/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/26.instance": "M930,180L1054,302.75",
  2049. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink/26.instance--/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern/__pGenericLinkLink/18.instance": "M1054.0532639700066,302.80272703482507L1177.9994474045677,425.49945297508606"
  2050. }
  2051. },
  2052. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons/PatternContentsLink"
  2053. }
  2054. },
  2055. "edges": [],
  2056. "metamodels": [
  2057. "/Formalisms/__Transformations__/TransformationRule/TransformationRule.defaultIcons",
  2058. "/Formalisms/ActionCode/ActionCode.defaultIcons.pattern",
  2059. "/Formalisms/__Utilities__/FileSystem/FileSystem.defaultIcons.pattern",
  2060. "/Formalisms/GenericGraph/GenericGraph.defaultIcons.pattern"
  2061. ]
  2062. },
  2063. "asm": {
  2064. "nodes": {
  2065. "7": {
  2066. "name": {
  2067. "type": "string",
  2068. "value": "NAC_"
  2069. },
  2070. "Condition": {
  2071. "type": "code",
  2072. "value": "true"
  2073. },
  2074. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/NAC"
  2075. },
  2076. "8": {
  2077. "Condition": {
  2078. "type": "code",
  2079. "value": "true"
  2080. },
  2081. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/LHS"
  2082. },
  2083. "9": {
  2084. "Action": {
  2085. "type": "code",
  2086. "value": "var id = getAttr('$atompmId','0'),\n code = getAttr('content','2').replace('/* IMPORTS */', getAttr('imports','0')+'\\n/* IMPORTS */'),\n body = 'class ActionCodeCode_'+id+' {\\n'+\n ' public void returnSomething(String ret) {propagateReturnedValue(\"'+id+'\", ret);}\\n'+\n ' public ActionCodeCode_'+id+'() {\\n'+\n ' runCode();\\n'+\n ' }\\n'+\n ' '+getAttr('body','0')+'\\n'+\n '}\\n'+\n '/* ACTION CODE */';\n\ncode = code.replace('/* ACTION CODE */', body);\nsetAttr('content',code,'2');"
  2087. },
  2088. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/RHS"
  2089. },
  2090. "10": {
  2091. "__pLabel": {
  2092. "type": "string",
  2093. "value": "0"
  2094. },
  2095. "__pMatchSubtypes": {
  2096. "type": "boolean",
  2097. "value": false
  2098. },
  2099. "imports": {
  2100. "type": "code",
  2101. "value": "true"
  2102. },
  2103. "body": {
  2104. "type": "code",
  2105. "value": "true"
  2106. },
  2107. "$type": "/Formalisms/ActionCode/ActionCode.pattern/__pCode"
  2108. },
  2109. "11": {
  2110. "__pLabel": {
  2111. "type": "string",
  2112. "value": "2"
  2113. },
  2114. "__pMatchSubtypes": {
  2115. "type": "boolean",
  2116. "value": false
  2117. },
  2118. "content": {
  2119. "type": "code",
  2120. "value": "true"
  2121. },
  2122. "path": {
  2123. "type": "code",
  2124. "value": "getAttr()=='./ActionCode.java'"
  2125. },
  2126. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile"
  2127. },
  2128. "12": {
  2129. "__pLabel": {
  2130. "type": "string",
  2131. "value": "1"
  2132. },
  2133. "__pMatchSubtypes": {
  2134. "type": "boolean",
  2135. "value": false
  2136. },
  2137. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  2138. },
  2139. "13": {
  2140. "__pLabel": {
  2141. "type": "string",
  2142. "value": "0"
  2143. },
  2144. "__pMatchSubtypes": {
  2145. "type": "boolean",
  2146. "value": false
  2147. },
  2148. "imports": {
  2149. "type": "code",
  2150. "value": "true"
  2151. },
  2152. "body": {
  2153. "type": "code",
  2154. "value": "true"
  2155. },
  2156. "$type": "/Formalisms/ActionCode/ActionCode.pattern/__pCode"
  2157. },
  2158. "14": {
  2159. "__pLabel": {
  2160. "type": "string",
  2161. "value": "2"
  2162. },
  2163. "__pMatchSubtypes": {
  2164. "type": "boolean",
  2165. "value": false
  2166. },
  2167. "content": {
  2168. "type": "code",
  2169. "value": "true"
  2170. },
  2171. "path": {
  2172. "type": "code",
  2173. "value": "getAttr()=='./ActionCode.java'"
  2174. },
  2175. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile"
  2176. },
  2177. "16": {
  2178. "__pLabel": {
  2179. "type": "string",
  2180. "value": "0"
  2181. },
  2182. "__pMatchSubtypes": {
  2183. "type": "boolean"
  2184. },
  2185. "imports": {
  2186. "type": "code",
  2187. "value": "getAttr()"
  2188. },
  2189. "body": {
  2190. "type": "code",
  2191. "value": "getAttr()"
  2192. },
  2193. "$type": "/Formalisms/ActionCode/ActionCode.pattern/__pCode"
  2194. },
  2195. "17": {
  2196. "__pLabel": {
  2197. "type": "string",
  2198. "value": "2"
  2199. },
  2200. "__pMatchSubtypes": {
  2201. "type": "boolean"
  2202. },
  2203. "content": {
  2204. "type": "code",
  2205. "value": "getAttr()"
  2206. },
  2207. "path": {
  2208. "type": "code",
  2209. "value": "getAttr()"
  2210. },
  2211. "$type": "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern/__pFile"
  2212. },
  2213. "18": {
  2214. "__pLabel": {
  2215. "type": "string",
  2216. "value": "1"
  2217. },
  2218. "__pMatchSubtypes": {
  2219. "type": "boolean"
  2220. },
  2221. "$type": "/Formalisms/GenericGraph/GenericGraph.pattern/__pGenericLink"
  2222. },
  2223. "19": {
  2224. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2225. },
  2226. "20": {
  2227. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2228. },
  2229. "21": {
  2230. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2231. },
  2232. "22": {
  2233. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2234. },
  2235. "23": {
  2236. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2237. },
  2238. "24": {
  2239. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2240. },
  2241. "25": {
  2242. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2243. },
  2244. "26": {
  2245. "$type": "/Formalisms/__Transformations__/TransformationRule/TransformationRule/PatternContents"
  2246. }
  2247. },
  2248. "edges": [
  2249. {
  2250. "src": "10",
  2251. "dest": "12"
  2252. },
  2253. {
  2254. "src": "12",
  2255. "dest": "11"
  2256. },
  2257. {
  2258. "src": "16",
  2259. "dest": "18"
  2260. },
  2261. {
  2262. "src": "18",
  2263. "dest": "17"
  2264. },
  2265. {
  2266. "src": "7",
  2267. "dest": "19"
  2268. },
  2269. {
  2270. "src": "19",
  2271. "dest": "10"
  2272. },
  2273. {
  2274. "src": "7",
  2275. "dest": "20"
  2276. },
  2277. {
  2278. "src": "20",
  2279. "dest": "11"
  2280. },
  2281. {
  2282. "src": "7",
  2283. "dest": "21"
  2284. },
  2285. {
  2286. "src": "21",
  2287. "dest": "12"
  2288. },
  2289. {
  2290. "src": "8",
  2291. "dest": "22"
  2292. },
  2293. {
  2294. "src": "22",
  2295. "dest": "13"
  2296. },
  2297. {
  2298. "src": "8",
  2299. "dest": "23"
  2300. },
  2301. {
  2302. "src": "23",
  2303. "dest": "14"
  2304. },
  2305. {
  2306. "src": "9",
  2307. "dest": "24"
  2308. },
  2309. {
  2310. "src": "24",
  2311. "dest": "16"
  2312. },
  2313. {
  2314. "src": "9",
  2315. "dest": "25"
  2316. },
  2317. {
  2318. "src": "25",
  2319. "dest": "17"
  2320. },
  2321. {
  2322. "src": "9",
  2323. "dest": "26"
  2324. },
  2325. {
  2326. "src": "26",
  2327. "dest": "18"
  2328. }
  2329. ],
  2330. "metamodels": [
  2331. "/Formalisms/__Transformations__/TransformationRule/TransformationRule",
  2332. "/Formalisms/ActionCode/ActionCode.pattern",
  2333. "/Formalisms/__Utilities__/FileSystem/FileSystem.pattern",
  2334. "/Formalisms/GenericGraph/GenericGraph.pattern"
  2335. ]
  2336. }
  2337. }