ConcreteSyntaxMM.model 134 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845
  1. {
  2. "csm": {
  3. "nodes": {
  4. "0": {
  5. "typename": {
  6. "type": "string",
  7. "value": "ClassIcon"
  8. },
  9. "position": {
  10. "type": "list<double>",
  11. "value": [
  12. 125,
  13. 489
  14. ]
  15. },
  16. "orientation": {
  17. "type": "double",
  18. "value": 0
  19. },
  20. "scale": {
  21. "type": "list<double>",
  22. "value": [
  23. 1,
  24. 1
  25. ]
  26. },
  27. "mapper": {
  28. "type": "code",
  29. "value": ""
  30. },
  31. "parser": {
  32. "type": "code",
  33. "value": ""
  34. },
  35. "$contents": {
  36. "type": "map<string,*>",
  37. "value": {
  38. "nodes": {
  39. "5": {
  40. "width": {
  41. "type": "double",
  42. "value": 200
  43. },
  44. "height": {
  45. "type": "double",
  46. "value": 125
  47. },
  48. "cornerRadius": {
  49. "type": "double",
  50. "value": 5
  51. },
  52. "style": {
  53. "type": "map<string,string>",
  54. "value": {
  55. "stroke": "#000000",
  56. "stroke-dasharray": "",
  57. "fill": "#ffffff",
  58. "fill-opacity": 0.75,
  59. "stroke-width": 2
  60. }
  61. },
  62. "mapper": {
  63. "type": "code",
  64. "value": ""
  65. },
  66. "parser": {
  67. "type": "code",
  68. "value": ""
  69. },
  70. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  71. "position": {
  72. "type": "list<double>",
  73. "value": [
  74. 0,
  75. 0
  76. ]
  77. },
  78. "orientation": {
  79. "type": "double",
  80. "value": 0
  81. },
  82. "scale": {
  83. "type": "list<double>",
  84. "value": [
  85. 1,
  86. 1
  87. ]
  88. }
  89. },
  90. "6": {
  91. "textContent": {
  92. "type": "string",
  93. "value": "Icon"
  94. },
  95. "style": {
  96. "type": "map<string,string>",
  97. "value": {
  98. "stroke": "#000000",
  99. "fill": "#ffffff",
  100. "fill-opacity": 0.75,
  101. "font-size": "20px",
  102. "font-style": "normal"
  103. }
  104. },
  105. "mapper": {
  106. "type": "code",
  107. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  108. },
  109. "parser": {
  110. "type": "code",
  111. "value": "({'name': getAttr('textContent')})"
  112. },
  113. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  114. "position": {
  115. "type": "list<double>",
  116. "value": [
  117. 23,
  118. 2
  119. ]
  120. },
  121. "orientation": {
  122. "type": "double",
  123. "value": 0
  124. },
  125. "scale": {
  126. "type": "list<double>",
  127. "value": [
  128. 1,
  129. 1
  130. ]
  131. }
  132. },
  133. "7": {
  134. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  135. "position": {
  136. "type": "list<double>",
  137. "value": [
  138. 13.896110991026944,
  139. 3.0451514439171206
  140. ]
  141. },
  142. "orientation": {
  143. "type": "double",
  144. "value": 0
  145. },
  146. "scale": {
  147. "type": "list<double>",
  148. "value": [
  149. 1,
  150. 1
  151. ]
  152. },
  153. "link-style": {
  154. "type": "map<string,string>",
  155. "value": {
  156. "stroke": "#00ffff",
  157. "stroke-dasharray": "",
  158. "stroke-opacity": 0.1,
  159. "arrow-start": "none",
  160. "arrow-end": "classic-wide-long"
  161. }
  162. }
  163. },
  164. "17": {
  165. "segments": {
  166. "type": "string",
  167. "value": "m0,0l200,0"
  168. },
  169. "style": {
  170. "type": "map<string,string>",
  171. "value": {
  172. "stroke": "#000000",
  173. "stroke-dasharray": "",
  174. "fill": "#ffffff",
  175. "fill-opacity": 0.75,
  176. "font-size": "20px",
  177. "stroke-width": 2,
  178. "arrow-start": "none",
  179. "arrow-end": "none"
  180. }
  181. },
  182. "mapper": {
  183. "type": "code",
  184. "value": ""
  185. },
  186. "parser": {
  187. "type": "code",
  188. "value": ""
  189. },
  190. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  191. "position": {
  192. "type": "list<double>",
  193. "value": [
  194. 1,
  195. 26
  196. ]
  197. },
  198. "orientation": {
  199. "type": "double",
  200. "value": 0
  201. },
  202. "scale": {
  203. "type": "list<double>",
  204. "value": [
  205. 1,
  206. 1
  207. ]
  208. }
  209. },
  210. "18": {
  211. "textContent": {
  212. "type": "string",
  213. "value": "typename\nposition\norientation\nscale\nmapper\nparser"
  214. },
  215. "style": {
  216. "type": "map<string,string>",
  217. "value": {
  218. "stroke": "#000000",
  219. "stroke-dasharray": "",
  220. "fill": "#ffffff",
  221. "fill-opacity": 0.75,
  222. "font-size": "13px",
  223. "stroke-width": 1,
  224. "arrow-start": "none",
  225. "arrow-end": "none"
  226. }
  227. },
  228. "mapper": {
  229. "type": "code",
  230. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  231. },
  232. "parser": {
  233. "type": "code",
  234. "value": ""
  235. },
  236. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  237. "position": {
  238. "type": "list<double>",
  239. "value": [
  240. 3,
  241. 25
  242. ]
  243. },
  244. "orientation": {
  245. "type": "double",
  246. "value": 0
  247. },
  248. "scale": {
  249. "type": "list<double>",
  250. "value": [
  251. 1,
  252. 1
  253. ]
  254. }
  255. },
  256. "19": {
  257. "width": {
  258. "type": "boolean",
  259. "value": true
  260. },
  261. "ratio": {
  262. "type": "double",
  263. "value": 1
  264. },
  265. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  266. "position": {
  267. "type": "list<double>",
  268. "value": [
  269. 168.09129891774523,
  270. 30.625911571363645
  271. ]
  272. },
  273. "orientation": {
  274. "type": "double",
  275. "value": 0
  276. },
  277. "scale": {
  278. "type": "list<double>",
  279. "value": [
  280. 1,
  281. 1
  282. ]
  283. },
  284. "link-style": {
  285. "type": "map<string,string>",
  286. "value": {
  287. "stroke": "#0000ff",
  288. "stroke-dasharray": "",
  289. "stroke-opacity": 1,
  290. "arrow-start": "none",
  291. "arrow-end": "classic-wide-long"
  292. }
  293. }
  294. },
  295. "20": {
  296. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  297. "position": {
  298. "type": "list<double>",
  299. "value": [
  300. 6.49899850809561,
  301. 18.998998508095553
  302. ]
  303. },
  304. "orientation": {
  305. "type": "double",
  306. "value": 0
  307. },
  308. "scale": {
  309. "type": "list<double>",
  310. "value": [
  311. 1,
  312. 1
  313. ]
  314. },
  315. "link-style": {
  316. "type": "map<string,string>",
  317. "value": {
  318. "stroke": "#00ffff",
  319. "stroke-dasharray": "",
  320. "stroke-opacity": 0.1,
  321. "arrow-start": "none",
  322. "arrow-end": "classic-wide-long"
  323. }
  324. }
  325. }
  326. },
  327. "edges": [
  328. {
  329. "src": "5",
  330. "dest": "7"
  331. },
  332. {
  333. "src": "7",
  334. "dest": "6"
  335. },
  336. {
  337. "src": "17",
  338. "dest": "19"
  339. },
  340. {
  341. "src": "19",
  342. "dest": "5"
  343. },
  344. {
  345. "src": "5",
  346. "dest": "20"
  347. },
  348. {
  349. "src": "20",
  350. "dest": "18"
  351. }
  352. ]
  353. }
  354. },
  355. "$asuri": {
  356. "type": "string",
  357. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/0.instance"
  358. },
  359. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  360. },
  361. "1": {
  362. "typename": {
  363. "type": "string",
  364. "value": "ClassIcon"
  365. },
  366. "position": {
  367. "type": "list<double>",
  368. "value": [
  369. 125,
  370. 714
  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. "mapper": {
  385. "type": "code",
  386. "value": ""
  387. },
  388. "parser": {
  389. "type": "code",
  390. "value": ""
  391. },
  392. "$contents": {
  393. "type": "map<string,*>",
  394. "value": {
  395. "nodes": {
  396. "5": {
  397. "width": {
  398. "type": "double",
  399. "value": 200
  400. },
  401. "height": {
  402. "type": "double",
  403. "value": 125
  404. },
  405. "cornerRadius": {
  406. "type": "double",
  407. "value": 5
  408. },
  409. "style": {
  410. "type": "map<string,string>",
  411. "value": {
  412. "stroke": "#000000",
  413. "stroke-dasharray": "",
  414. "fill": "#ffffff",
  415. "fill-opacity": 0.75,
  416. "stroke-width": 2
  417. }
  418. },
  419. "mapper": {
  420. "type": "code",
  421. "value": ""
  422. },
  423. "parser": {
  424. "type": "code",
  425. "value": ""
  426. },
  427. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  428. "position": {
  429. "type": "list<double>",
  430. "value": [
  431. 0,
  432. 0
  433. ]
  434. },
  435. "orientation": {
  436. "type": "double",
  437. "value": 0
  438. },
  439. "scale": {
  440. "type": "list<double>",
  441. "value": [
  442. 1,
  443. 1
  444. ]
  445. }
  446. },
  447. "6": {
  448. "textContent": {
  449. "type": "string",
  450. "value": "Link"
  451. },
  452. "style": {
  453. "type": "map<string,string>",
  454. "value": {
  455. "stroke": "#000000",
  456. "fill": "#ffffff",
  457. "fill-opacity": 0.75,
  458. "font-size": "20px",
  459. "font-style": "normal"
  460. }
  461. },
  462. "mapper": {
  463. "type": "code",
  464. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  465. },
  466. "parser": {
  467. "type": "code",
  468. "value": "({'name': getAttr('textContent')})"
  469. },
  470. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  471. "position": {
  472. "type": "list<double>",
  473. "value": [
  474. 23,
  475. 2
  476. ]
  477. },
  478. "orientation": {
  479. "type": "double",
  480. "value": 0
  481. },
  482. "scale": {
  483. "type": "list<double>",
  484. "value": [
  485. 1,
  486. 1
  487. ]
  488. }
  489. },
  490. "7": {
  491. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  492. "position": {
  493. "type": "list<double>",
  494. "value": [
  495. 13.896110991026944,
  496. 3.0451514439171206
  497. ]
  498. },
  499. "orientation": {
  500. "type": "double",
  501. "value": 0
  502. },
  503. "scale": {
  504. "type": "list<double>",
  505. "value": [
  506. 1,
  507. 1
  508. ]
  509. },
  510. "link-style": {
  511. "type": "map<string,string>",
  512. "value": {
  513. "stroke": "#00ffff",
  514. "stroke-dasharray": "",
  515. "stroke-opacity": 0.1,
  516. "arrow-start": "none",
  517. "arrow-end": "classic-wide-long"
  518. }
  519. }
  520. },
  521. "17": {
  522. "segments": {
  523. "type": "string",
  524. "value": "m0,0l200,0"
  525. },
  526. "style": {
  527. "type": "map<string,string>",
  528. "value": {
  529. "stroke": "#000000",
  530. "stroke-dasharray": "",
  531. "fill": "#ffffff",
  532. "fill-opacity": 0.75,
  533. "font-size": "20px",
  534. "stroke-width": 2,
  535. "arrow-start": "none",
  536. "arrow-end": "none"
  537. }
  538. },
  539. "mapper": {
  540. "type": "code",
  541. "value": ""
  542. },
  543. "parser": {
  544. "type": "code",
  545. "value": ""
  546. },
  547. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  548. "position": {
  549. "type": "list<double>",
  550. "value": [
  551. 1,
  552. 26
  553. ]
  554. },
  555. "orientation": {
  556. "type": "double",
  557. "value": 0
  558. },
  559. "scale": {
  560. "type": "list<double>",
  561. "value": [
  562. 1,
  563. 1
  564. ]
  565. }
  566. },
  567. "18": {
  568. "textContent": {
  569. "type": "string",
  570. "value": "link-style\narrowHead\narrowTail"
  571. },
  572. "style": {
  573. "type": "map<string,string>",
  574. "value": {
  575. "stroke": "#000000",
  576. "stroke-dasharray": "",
  577. "fill": "#ffffff",
  578. "fill-opacity": 0.75,
  579. "font-size": "13px",
  580. "stroke-width": 1,
  581. "arrow-start": "none",
  582. "arrow-end": "none"
  583. }
  584. },
  585. "mapper": {
  586. "type": "code",
  587. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  588. },
  589. "parser": {
  590. "type": "code",
  591. "value": ""
  592. },
  593. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  594. "position": {
  595. "type": "list<double>",
  596. "value": [
  597. 3,
  598. 25
  599. ]
  600. },
  601. "orientation": {
  602. "type": "double",
  603. "value": 0
  604. },
  605. "scale": {
  606. "type": "list<double>",
  607. "value": [
  608. 1,
  609. 1
  610. ]
  611. }
  612. },
  613. "19": {
  614. "width": {
  615. "type": "boolean",
  616. "value": true
  617. },
  618. "ratio": {
  619. "type": "double",
  620. "value": 1
  621. },
  622. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  623. "position": {
  624. "type": "list<double>",
  625. "value": [
  626. 168.09129891774523,
  627. 30.625911571363645
  628. ]
  629. },
  630. "orientation": {
  631. "type": "double",
  632. "value": 0
  633. },
  634. "scale": {
  635. "type": "list<double>",
  636. "value": [
  637. 1,
  638. 1
  639. ]
  640. },
  641. "link-style": {
  642. "type": "map<string,string>",
  643. "value": {
  644. "stroke": "#0000ff",
  645. "stroke-dasharray": "",
  646. "stroke-opacity": 1,
  647. "arrow-start": "none",
  648. "arrow-end": "classic-wide-long"
  649. }
  650. }
  651. },
  652. "20": {
  653. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  654. "position": {
  655. "type": "list<double>",
  656. "value": [
  657. 6.49899850809561,
  658. 18.998998508095553
  659. ]
  660. },
  661. "orientation": {
  662. "type": "double",
  663. "value": 0
  664. },
  665. "scale": {
  666. "type": "list<double>",
  667. "value": [
  668. 1,
  669. 1
  670. ]
  671. },
  672. "link-style": {
  673. "type": "map<string,string>",
  674. "value": {
  675. "stroke": "#00ffff",
  676. "stroke-dasharray": "",
  677. "stroke-opacity": 0.1,
  678. "arrow-start": "none",
  679. "arrow-end": "classic-wide-long"
  680. }
  681. }
  682. }
  683. },
  684. "edges": [
  685. {
  686. "src": "5",
  687. "dest": "7"
  688. },
  689. {
  690. "src": "7",
  691. "dest": "6"
  692. },
  693. {
  694. "src": "17",
  695. "dest": "19"
  696. },
  697. {
  698. "src": "19",
  699. "dest": "5"
  700. },
  701. {
  702. "src": "5",
  703. "dest": "20"
  704. },
  705. {
  706. "src": "20",
  707. "dest": "18"
  708. }
  709. ]
  710. }
  711. },
  712. "$asuri": {
  713. "type": "string",
  714. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/1.instance"
  715. },
  716. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  717. },
  718. "2": {
  719. "typename": {
  720. "type": "string",
  721. "value": "ClassIcon"
  722. },
  723. "position": {
  724. "type": "list<double>",
  725. "value": [
  726. 497,
  727. 476
  728. ]
  729. },
  730. "orientation": {
  731. "type": "double",
  732. "value": 0
  733. },
  734. "scale": {
  735. "type": "list<double>",
  736. "value": [
  737. 1,
  738. 1
  739. ]
  740. },
  741. "mapper": {
  742. "type": "code",
  743. "value": ""
  744. },
  745. "parser": {
  746. "type": "code",
  747. "value": ""
  748. },
  749. "$contents": {
  750. "type": "map<string,*>",
  751. "value": {
  752. "nodes": {
  753. "5": {
  754. "width": {
  755. "type": "double",
  756. "value": 200
  757. },
  758. "height": {
  759. "type": "double",
  760. "value": 125
  761. },
  762. "cornerRadius": {
  763. "type": "double",
  764. "value": 5
  765. },
  766. "style": {
  767. "type": "map<string,string>",
  768. "value": {
  769. "stroke": "#000000",
  770. "stroke-dasharray": "",
  771. "fill": "#ffffff",
  772. "fill-opacity": 0.75,
  773. "stroke-width": 2
  774. }
  775. },
  776. "mapper": {
  777. "type": "code",
  778. "value": ""
  779. },
  780. "parser": {
  781. "type": "code",
  782. "value": ""
  783. },
  784. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  785. "position": {
  786. "type": "list<double>",
  787. "value": [
  788. 0,
  789. 0
  790. ]
  791. },
  792. "orientation": {
  793. "type": "double",
  794. "value": 0
  795. },
  796. "scale": {
  797. "type": "list<double>",
  798. "value": [
  799. 1,
  800. 1
  801. ]
  802. }
  803. },
  804. "6": {
  805. "textContent": {
  806. "type": "string",
  807. "value": "VisualObject"
  808. },
  809. "style": {
  810. "type": "map<string,string>",
  811. "value": {
  812. "stroke": "#000000",
  813. "fill": "#ffffff",
  814. "fill-opacity": 0.75,
  815. "font-size": "20px",
  816. "font-style": "italic"
  817. }
  818. },
  819. "mapper": {
  820. "type": "code",
  821. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  822. },
  823. "parser": {
  824. "type": "code",
  825. "value": "({'name': getAttr('textContent')})"
  826. },
  827. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  828. "position": {
  829. "type": "list<double>",
  830. "value": [
  831. 23,
  832. 2
  833. ]
  834. },
  835. "orientation": {
  836. "type": "double",
  837. "value": 0
  838. },
  839. "scale": {
  840. "type": "list<double>",
  841. "value": [
  842. 1,
  843. 1
  844. ]
  845. }
  846. },
  847. "7": {
  848. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  849. "position": {
  850. "type": "list<double>",
  851. "value": [
  852. 13.896110991026944,
  853. 3.0451514439171206
  854. ]
  855. },
  856. "orientation": {
  857. "type": "double",
  858. "value": 0
  859. },
  860. "scale": {
  861. "type": "list<double>",
  862. "value": [
  863. 1,
  864. 1
  865. ]
  866. },
  867. "link-style": {
  868. "type": "map<string,string>",
  869. "value": {
  870. "stroke": "#00ffff",
  871. "stroke-dasharray": "",
  872. "stroke-opacity": 0.1,
  873. "arrow-start": "none",
  874. "arrow-end": "classic-wide-long"
  875. }
  876. }
  877. },
  878. "17": {
  879. "segments": {
  880. "type": "string",
  881. "value": "m0,0l200,0"
  882. },
  883. "style": {
  884. "type": "map<string,string>",
  885. "value": {
  886. "stroke": "#000000",
  887. "stroke-dasharray": "",
  888. "fill": "#ffffff",
  889. "fill-opacity": 0.75,
  890. "font-size": "20px",
  891. "stroke-width": 2,
  892. "arrow-start": "none",
  893. "arrow-end": "none"
  894. }
  895. },
  896. "mapper": {
  897. "type": "code",
  898. "value": ""
  899. },
  900. "parser": {
  901. "type": "code",
  902. "value": ""
  903. },
  904. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  905. "position": {
  906. "type": "list<double>",
  907. "value": [
  908. 1,
  909. 26
  910. ]
  911. },
  912. "orientation": {
  913. "type": "double",
  914. "value": 0
  915. },
  916. "scale": {
  917. "type": "list<double>",
  918. "value": [
  919. 1,
  920. 1
  921. ]
  922. }
  923. },
  924. "18": {
  925. "textContent": {
  926. "type": "string",
  927. "value": "style\nmapper\nparser"
  928. },
  929. "style": {
  930. "type": "map<string,string>",
  931. "value": {
  932. "stroke": "#000000",
  933. "stroke-dasharray": "",
  934. "fill": "#ffffff",
  935. "fill-opacity": 0.75,
  936. "font-size": "13px",
  937. "stroke-width": 1,
  938. "arrow-start": "none",
  939. "arrow-end": "none"
  940. }
  941. },
  942. "mapper": {
  943. "type": "code",
  944. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  945. },
  946. "parser": {
  947. "type": "code",
  948. "value": ""
  949. },
  950. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  951. "position": {
  952. "type": "list<double>",
  953. "value": [
  954. 3,
  955. 25
  956. ]
  957. },
  958. "orientation": {
  959. "type": "double",
  960. "value": 0
  961. },
  962. "scale": {
  963. "type": "list<double>",
  964. "value": [
  965. 1,
  966. 1
  967. ]
  968. }
  969. },
  970. "19": {
  971. "width": {
  972. "type": "boolean",
  973. "value": true
  974. },
  975. "ratio": {
  976. "type": "double",
  977. "value": 1
  978. },
  979. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  980. "position": {
  981. "type": "list<double>",
  982. "value": [
  983. 168.09129891774523,
  984. 30.625911571363645
  985. ]
  986. },
  987. "orientation": {
  988. "type": "double",
  989. "value": 0
  990. },
  991. "scale": {
  992. "type": "list<double>",
  993. "value": [
  994. 1,
  995. 1
  996. ]
  997. },
  998. "link-style": {
  999. "type": "map<string,string>",
  1000. "value": {
  1001. "stroke": "#0000ff",
  1002. "stroke-dasharray": "",
  1003. "stroke-opacity": 1,
  1004. "arrow-start": "none",
  1005. "arrow-end": "classic-wide-long"
  1006. }
  1007. }
  1008. },
  1009. "20": {
  1010. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1011. "position": {
  1012. "type": "list<double>",
  1013. "value": [
  1014. 6.49899850809561,
  1015. 18.998998508095553
  1016. ]
  1017. },
  1018. "orientation": {
  1019. "type": "double",
  1020. "value": 0
  1021. },
  1022. "scale": {
  1023. "type": "list<double>",
  1024. "value": [
  1025. 1,
  1026. 1
  1027. ]
  1028. },
  1029. "link-style": {
  1030. "type": "map<string,string>",
  1031. "value": {
  1032. "stroke": "#00ffff",
  1033. "stroke-dasharray": "",
  1034. "stroke-opacity": 0.1,
  1035. "arrow-start": "none",
  1036. "arrow-end": "classic-wide-long"
  1037. }
  1038. }
  1039. }
  1040. },
  1041. "edges": [
  1042. {
  1043. "src": "5",
  1044. "dest": "7"
  1045. },
  1046. {
  1047. "src": "7",
  1048. "dest": "6"
  1049. },
  1050. {
  1051. "src": "17",
  1052. "dest": "19"
  1053. },
  1054. {
  1055. "src": "19",
  1056. "dest": "5"
  1057. },
  1058. {
  1059. "src": "5",
  1060. "dest": "20"
  1061. },
  1062. {
  1063. "src": "20",
  1064. "dest": "18"
  1065. }
  1066. ]
  1067. }
  1068. },
  1069. "$asuri": {
  1070. "type": "string",
  1071. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/2.instance"
  1072. },
  1073. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  1074. },
  1075. "3": {
  1076. "typename": {
  1077. "type": "string",
  1078. "value": "ClassIcon"
  1079. },
  1080. "position": {
  1081. "type": "list<double>",
  1082. "value": [
  1083. 675,
  1084. 125
  1085. ]
  1086. },
  1087. "orientation": {
  1088. "type": "double",
  1089. "value": 0
  1090. },
  1091. "scale": {
  1092. "type": "list<double>",
  1093. "value": [
  1094. 1,
  1095. 1
  1096. ]
  1097. },
  1098. "mapper": {
  1099. "type": "code",
  1100. "value": ""
  1101. },
  1102. "parser": {
  1103. "type": "code",
  1104. "value": ""
  1105. },
  1106. "$contents": {
  1107. "type": "map<string,*>",
  1108. "value": {
  1109. "nodes": {
  1110. "5": {
  1111. "width": {
  1112. "type": "double",
  1113. "value": 200
  1114. },
  1115. "height": {
  1116. "type": "double",
  1117. "value": 125
  1118. },
  1119. "cornerRadius": {
  1120. "type": "double",
  1121. "value": 5
  1122. },
  1123. "style": {
  1124. "type": "map<string,string>",
  1125. "value": {
  1126. "stroke": "#000000",
  1127. "stroke-dasharray": "",
  1128. "fill": "#ffffff",
  1129. "fill-opacity": 0.75,
  1130. "stroke-width": 2
  1131. }
  1132. },
  1133. "mapper": {
  1134. "type": "code",
  1135. "value": ""
  1136. },
  1137. "parser": {
  1138. "type": "code",
  1139. "value": ""
  1140. },
  1141. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1142. "position": {
  1143. "type": "list<double>",
  1144. "value": [
  1145. 0,
  1146. 0
  1147. ]
  1148. },
  1149. "orientation": {
  1150. "type": "double",
  1151. "value": 0
  1152. },
  1153. "scale": {
  1154. "type": "list<double>",
  1155. "value": [
  1156. 1,
  1157. 1
  1158. ]
  1159. }
  1160. },
  1161. "6": {
  1162. "textContent": {
  1163. "type": "string",
  1164. "value": "Rectangle"
  1165. },
  1166. "style": {
  1167. "type": "map<string,string>",
  1168. "value": {
  1169. "stroke": "#000000",
  1170. "fill": "#ffffff",
  1171. "fill-opacity": 0.75,
  1172. "font-size": "20px",
  1173. "font-style": "normal"
  1174. }
  1175. },
  1176. "mapper": {
  1177. "type": "code",
  1178. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  1179. },
  1180. "parser": {
  1181. "type": "code",
  1182. "value": "({'name': getAttr('textContent')})"
  1183. },
  1184. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1185. "position": {
  1186. "type": "list<double>",
  1187. "value": [
  1188. 23,
  1189. 2
  1190. ]
  1191. },
  1192. "orientation": {
  1193. "type": "double",
  1194. "value": 0
  1195. },
  1196. "scale": {
  1197. "type": "list<double>",
  1198. "value": [
  1199. 1,
  1200. 1
  1201. ]
  1202. }
  1203. },
  1204. "7": {
  1205. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1206. "position": {
  1207. "type": "list<double>",
  1208. "value": [
  1209. 13.896110991026944,
  1210. 3.0451514439171206
  1211. ]
  1212. },
  1213. "orientation": {
  1214. "type": "double",
  1215. "value": 0
  1216. },
  1217. "scale": {
  1218. "type": "list<double>",
  1219. "value": [
  1220. 1,
  1221. 1
  1222. ]
  1223. },
  1224. "link-style": {
  1225. "type": "map<string,string>",
  1226. "value": {
  1227. "stroke": "#00ffff",
  1228. "stroke-dasharray": "",
  1229. "stroke-opacity": 0.1,
  1230. "arrow-start": "none",
  1231. "arrow-end": "classic-wide-long"
  1232. }
  1233. }
  1234. },
  1235. "17": {
  1236. "segments": {
  1237. "type": "string",
  1238. "value": "m0,0l200,0"
  1239. },
  1240. "style": {
  1241. "type": "map<string,string>",
  1242. "value": {
  1243. "stroke": "#000000",
  1244. "stroke-dasharray": "",
  1245. "fill": "#ffffff",
  1246. "fill-opacity": 0.75,
  1247. "font-size": "20px",
  1248. "stroke-width": 2,
  1249. "arrow-start": "none",
  1250. "arrow-end": "none"
  1251. }
  1252. },
  1253. "mapper": {
  1254. "type": "code",
  1255. "value": ""
  1256. },
  1257. "parser": {
  1258. "type": "code",
  1259. "value": ""
  1260. },
  1261. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1262. "position": {
  1263. "type": "list<double>",
  1264. "value": [
  1265. 1,
  1266. 26
  1267. ]
  1268. },
  1269. "orientation": {
  1270. "type": "double",
  1271. "value": 0
  1272. },
  1273. "scale": {
  1274. "type": "list<double>",
  1275. "value": [
  1276. 1,
  1277. 1
  1278. ]
  1279. }
  1280. },
  1281. "18": {
  1282. "textContent": {
  1283. "type": "string",
  1284. "value": "width\nheight\ncornerRadius"
  1285. },
  1286. "style": {
  1287. "type": "map<string,string>",
  1288. "value": {
  1289. "stroke": "#000000",
  1290. "stroke-dasharray": "",
  1291. "fill": "#ffffff",
  1292. "fill-opacity": 0.75,
  1293. "font-size": "13px",
  1294. "stroke-width": 1,
  1295. "arrow-start": "none",
  1296. "arrow-end": "none"
  1297. }
  1298. },
  1299. "mapper": {
  1300. "type": "code",
  1301. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  1302. },
  1303. "parser": {
  1304. "type": "code",
  1305. "value": ""
  1306. },
  1307. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1308. "position": {
  1309. "type": "list<double>",
  1310. "value": [
  1311. 3,
  1312. 25
  1313. ]
  1314. },
  1315. "orientation": {
  1316. "type": "double",
  1317. "value": 0
  1318. },
  1319. "scale": {
  1320. "type": "list<double>",
  1321. "value": [
  1322. 1,
  1323. 1
  1324. ]
  1325. }
  1326. },
  1327. "19": {
  1328. "width": {
  1329. "type": "boolean",
  1330. "value": true
  1331. },
  1332. "ratio": {
  1333. "type": "double",
  1334. "value": 1
  1335. },
  1336. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  1337. "position": {
  1338. "type": "list<double>",
  1339. "value": [
  1340. 168.09129891774523,
  1341. 30.625911571363645
  1342. ]
  1343. },
  1344. "orientation": {
  1345. "type": "double",
  1346. "value": 0
  1347. },
  1348. "scale": {
  1349. "type": "list<double>",
  1350. "value": [
  1351. 1,
  1352. 1
  1353. ]
  1354. },
  1355. "link-style": {
  1356. "type": "map<string,string>",
  1357. "value": {
  1358. "stroke": "#0000ff",
  1359. "stroke-dasharray": "",
  1360. "stroke-opacity": 1,
  1361. "arrow-start": "none",
  1362. "arrow-end": "classic-wide-long"
  1363. }
  1364. }
  1365. },
  1366. "20": {
  1367. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1368. "position": {
  1369. "type": "list<double>",
  1370. "value": [
  1371. 6.49899850809561,
  1372. 18.998998508095553
  1373. ]
  1374. },
  1375. "orientation": {
  1376. "type": "double",
  1377. "value": 0
  1378. },
  1379. "scale": {
  1380. "type": "list<double>",
  1381. "value": [
  1382. 1,
  1383. 1
  1384. ]
  1385. },
  1386. "link-style": {
  1387. "type": "map<string,string>",
  1388. "value": {
  1389. "stroke": "#00ffff",
  1390. "stroke-dasharray": "",
  1391. "stroke-opacity": 0.1,
  1392. "arrow-start": "none",
  1393. "arrow-end": "classic-wide-long"
  1394. }
  1395. }
  1396. }
  1397. },
  1398. "edges": [
  1399. {
  1400. "src": "5",
  1401. "dest": "7"
  1402. },
  1403. {
  1404. "src": "7",
  1405. "dest": "6"
  1406. },
  1407. {
  1408. "src": "17",
  1409. "dest": "19"
  1410. },
  1411. {
  1412. "src": "19",
  1413. "dest": "5"
  1414. },
  1415. {
  1416. "src": "5",
  1417. "dest": "20"
  1418. },
  1419. {
  1420. "src": "20",
  1421. "dest": "18"
  1422. }
  1423. ]
  1424. }
  1425. },
  1426. "$asuri": {
  1427. "type": "string",
  1428. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/3.instance"
  1429. },
  1430. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  1431. },
  1432. "4": {
  1433. "typename": {
  1434. "type": "string",
  1435. "value": "ClassIcon"
  1436. },
  1437. "position": {
  1438. "type": "list<double>",
  1439. "value": [
  1440. 900,
  1441. 175
  1442. ]
  1443. },
  1444. "orientation": {
  1445. "type": "double",
  1446. "value": 0
  1447. },
  1448. "scale": {
  1449. "type": "list<double>",
  1450. "value": [
  1451. 1,
  1452. 1
  1453. ]
  1454. },
  1455. "mapper": {
  1456. "type": "code",
  1457. "value": ""
  1458. },
  1459. "parser": {
  1460. "type": "code",
  1461. "value": ""
  1462. },
  1463. "$contents": {
  1464. "type": "map<string,*>",
  1465. "value": {
  1466. "nodes": {
  1467. "5": {
  1468. "width": {
  1469. "type": "double",
  1470. "value": 200
  1471. },
  1472. "height": {
  1473. "type": "double",
  1474. "value": 125
  1475. },
  1476. "cornerRadius": {
  1477. "type": "double",
  1478. "value": 5
  1479. },
  1480. "style": {
  1481. "type": "map<string,string>",
  1482. "value": {
  1483. "stroke": "#000000",
  1484. "stroke-dasharray": "",
  1485. "fill": "#ffffff",
  1486. "fill-opacity": 0.75,
  1487. "stroke-width": 2
  1488. }
  1489. },
  1490. "mapper": {
  1491. "type": "code",
  1492. "value": ""
  1493. },
  1494. "parser": {
  1495. "type": "code",
  1496. "value": ""
  1497. },
  1498. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1499. "position": {
  1500. "type": "list<double>",
  1501. "value": [
  1502. 0,
  1503. 0
  1504. ]
  1505. },
  1506. "orientation": {
  1507. "type": "double",
  1508. "value": 0
  1509. },
  1510. "scale": {
  1511. "type": "list<double>",
  1512. "value": [
  1513. 1,
  1514. 1
  1515. ]
  1516. }
  1517. },
  1518. "6": {
  1519. "textContent": {
  1520. "type": "string",
  1521. "value": "Circle"
  1522. },
  1523. "style": {
  1524. "type": "map<string,string>",
  1525. "value": {
  1526. "stroke": "#000000",
  1527. "fill": "#ffffff",
  1528. "fill-opacity": 0.75,
  1529. "font-size": "20px",
  1530. "font-style": "normal"
  1531. }
  1532. },
  1533. "mapper": {
  1534. "type": "code",
  1535. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  1536. },
  1537. "parser": {
  1538. "type": "code",
  1539. "value": "({'name': getAttr('textContent')})"
  1540. },
  1541. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1542. "position": {
  1543. "type": "list<double>",
  1544. "value": [
  1545. 23,
  1546. 2
  1547. ]
  1548. },
  1549. "orientation": {
  1550. "type": "double",
  1551. "value": 0
  1552. },
  1553. "scale": {
  1554. "type": "list<double>",
  1555. "value": [
  1556. 1,
  1557. 1
  1558. ]
  1559. }
  1560. },
  1561. "7": {
  1562. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1563. "position": {
  1564. "type": "list<double>",
  1565. "value": [
  1566. 13.896110991026944,
  1567. 3.0451514439171206
  1568. ]
  1569. },
  1570. "orientation": {
  1571. "type": "double",
  1572. "value": 0
  1573. },
  1574. "scale": {
  1575. "type": "list<double>",
  1576. "value": [
  1577. 1,
  1578. 1
  1579. ]
  1580. },
  1581. "link-style": {
  1582. "type": "map<string,string>",
  1583. "value": {
  1584. "stroke": "#00ffff",
  1585. "stroke-dasharray": "",
  1586. "stroke-opacity": 0.1,
  1587. "arrow-start": "none",
  1588. "arrow-end": "classic-wide-long"
  1589. }
  1590. }
  1591. },
  1592. "17": {
  1593. "segments": {
  1594. "type": "string",
  1595. "value": "m0,0l200,0"
  1596. },
  1597. "style": {
  1598. "type": "map<string,string>",
  1599. "value": {
  1600. "stroke": "#000000",
  1601. "stroke-dasharray": "",
  1602. "fill": "#ffffff",
  1603. "fill-opacity": 0.75,
  1604. "font-size": "20px",
  1605. "stroke-width": 2,
  1606. "arrow-start": "none",
  1607. "arrow-end": "none"
  1608. }
  1609. },
  1610. "mapper": {
  1611. "type": "code",
  1612. "value": ""
  1613. },
  1614. "parser": {
  1615. "type": "code",
  1616. "value": ""
  1617. },
  1618. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1619. "position": {
  1620. "type": "list<double>",
  1621. "value": [
  1622. 1,
  1623. 26
  1624. ]
  1625. },
  1626. "orientation": {
  1627. "type": "double",
  1628. "value": 0
  1629. },
  1630. "scale": {
  1631. "type": "list<double>",
  1632. "value": [
  1633. 1,
  1634. 1
  1635. ]
  1636. }
  1637. },
  1638. "18": {
  1639. "textContent": {
  1640. "type": "string",
  1641. "value": "r"
  1642. },
  1643. "style": {
  1644. "type": "map<string,string>",
  1645. "value": {
  1646. "stroke": "#000000",
  1647. "stroke-dasharray": "",
  1648. "fill": "#ffffff",
  1649. "fill-opacity": 0.75,
  1650. "font-size": "13px",
  1651. "stroke-width": 1,
  1652. "arrow-start": "none",
  1653. "arrow-end": "none"
  1654. }
  1655. },
  1656. "mapper": {
  1657. "type": "code",
  1658. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  1659. },
  1660. "parser": {
  1661. "type": "code",
  1662. "value": ""
  1663. },
  1664. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1665. "position": {
  1666. "type": "list<double>",
  1667. "value": [
  1668. 3,
  1669. 25
  1670. ]
  1671. },
  1672. "orientation": {
  1673. "type": "double",
  1674. "value": 0
  1675. },
  1676. "scale": {
  1677. "type": "list<double>",
  1678. "value": [
  1679. 1,
  1680. 1
  1681. ]
  1682. }
  1683. },
  1684. "19": {
  1685. "width": {
  1686. "type": "boolean",
  1687. "value": true
  1688. },
  1689. "ratio": {
  1690. "type": "double",
  1691. "value": 1
  1692. },
  1693. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  1694. "position": {
  1695. "type": "list<double>",
  1696. "value": [
  1697. 168.09129891774523,
  1698. 30.625911571363645
  1699. ]
  1700. },
  1701. "orientation": {
  1702. "type": "double",
  1703. "value": 0
  1704. },
  1705. "scale": {
  1706. "type": "list<double>",
  1707. "value": [
  1708. 1,
  1709. 1
  1710. ]
  1711. },
  1712. "link-style": {
  1713. "type": "map<string,string>",
  1714. "value": {
  1715. "stroke": "#0000ff",
  1716. "stroke-dasharray": "",
  1717. "stroke-opacity": 1,
  1718. "arrow-start": "none",
  1719. "arrow-end": "classic-wide-long"
  1720. }
  1721. }
  1722. },
  1723. "20": {
  1724. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1725. "position": {
  1726. "type": "list<double>",
  1727. "value": [
  1728. 6.49899850809561,
  1729. 18.998998508095553
  1730. ]
  1731. },
  1732. "orientation": {
  1733. "type": "double",
  1734. "value": 0
  1735. },
  1736. "scale": {
  1737. "type": "list<double>",
  1738. "value": [
  1739. 1,
  1740. 1
  1741. ]
  1742. },
  1743. "link-style": {
  1744. "type": "map<string,string>",
  1745. "value": {
  1746. "stroke": "#00ffff",
  1747. "stroke-dasharray": "",
  1748. "stroke-opacity": 0.1,
  1749. "arrow-start": "none",
  1750. "arrow-end": "classic-wide-long"
  1751. }
  1752. }
  1753. }
  1754. },
  1755. "edges": [
  1756. {
  1757. "src": "5",
  1758. "dest": "7"
  1759. },
  1760. {
  1761. "src": "7",
  1762. "dest": "6"
  1763. },
  1764. {
  1765. "src": "17",
  1766. "dest": "19"
  1767. },
  1768. {
  1769. "src": "19",
  1770. "dest": "5"
  1771. },
  1772. {
  1773. "src": "5",
  1774. "dest": "20"
  1775. },
  1776. {
  1777. "src": "20",
  1778. "dest": "18"
  1779. }
  1780. ]
  1781. }
  1782. },
  1783. "$asuri": {
  1784. "type": "string",
  1785. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/4.instance"
  1786. },
  1787. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  1788. },
  1789. "5": {
  1790. "typename": {
  1791. "type": "string",
  1792. "value": "ClassIcon"
  1793. },
  1794. "position": {
  1795. "type": "list<double>",
  1796. "value": [
  1797. 950,
  1798. 325
  1799. ]
  1800. },
  1801. "orientation": {
  1802. "type": "double",
  1803. "value": 0
  1804. },
  1805. "scale": {
  1806. "type": "list<double>",
  1807. "value": [
  1808. 1,
  1809. 1
  1810. ]
  1811. },
  1812. "mapper": {
  1813. "type": "code",
  1814. "value": ""
  1815. },
  1816. "parser": {
  1817. "type": "code",
  1818. "value": ""
  1819. },
  1820. "$contents": {
  1821. "type": "map<string,*>",
  1822. "value": {
  1823. "nodes": {
  1824. "5": {
  1825. "width": {
  1826. "type": "double",
  1827. "value": 200
  1828. },
  1829. "height": {
  1830. "type": "double",
  1831. "value": 125
  1832. },
  1833. "cornerRadius": {
  1834. "type": "double",
  1835. "value": 5
  1836. },
  1837. "style": {
  1838. "type": "map<string,string>",
  1839. "value": {
  1840. "stroke": "#000000",
  1841. "stroke-dasharray": "",
  1842. "fill": "#ffffff",
  1843. "fill-opacity": 0.75,
  1844. "stroke-width": 2
  1845. }
  1846. },
  1847. "mapper": {
  1848. "type": "code",
  1849. "value": ""
  1850. },
  1851. "parser": {
  1852. "type": "code",
  1853. "value": ""
  1854. },
  1855. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  1856. "position": {
  1857. "type": "list<double>",
  1858. "value": [
  1859. 0,
  1860. 0
  1861. ]
  1862. },
  1863. "orientation": {
  1864. "type": "double",
  1865. "value": 0
  1866. },
  1867. "scale": {
  1868. "type": "list<double>",
  1869. "value": [
  1870. 1,
  1871. 1
  1872. ]
  1873. }
  1874. },
  1875. "6": {
  1876. "textContent": {
  1877. "type": "string",
  1878. "value": "Ellipse"
  1879. },
  1880. "style": {
  1881. "type": "map<string,string>",
  1882. "value": {
  1883. "stroke": "#000000",
  1884. "fill": "#ffffff",
  1885. "fill-opacity": 0.75,
  1886. "font-size": "20px",
  1887. "font-style": "normal"
  1888. }
  1889. },
  1890. "mapper": {
  1891. "type": "code",
  1892. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  1893. },
  1894. "parser": {
  1895. "type": "code",
  1896. "value": "({'name': getAttr('textContent')})"
  1897. },
  1898. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  1899. "position": {
  1900. "type": "list<double>",
  1901. "value": [
  1902. 23,
  1903. 2
  1904. ]
  1905. },
  1906. "orientation": {
  1907. "type": "double",
  1908. "value": 0
  1909. },
  1910. "scale": {
  1911. "type": "list<double>",
  1912. "value": [
  1913. 1,
  1914. 1
  1915. ]
  1916. }
  1917. },
  1918. "7": {
  1919. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  1920. "position": {
  1921. "type": "list<double>",
  1922. "value": [
  1923. 13.896110991026944,
  1924. 3.0451514439171206
  1925. ]
  1926. },
  1927. "orientation": {
  1928. "type": "double",
  1929. "value": 0
  1930. },
  1931. "scale": {
  1932. "type": "list<double>",
  1933. "value": [
  1934. 1,
  1935. 1
  1936. ]
  1937. },
  1938. "link-style": {
  1939. "type": "map<string,string>",
  1940. "value": {
  1941. "stroke": "#00ffff",
  1942. "stroke-dasharray": "",
  1943. "stroke-opacity": 0.1,
  1944. "arrow-start": "none",
  1945. "arrow-end": "classic-wide-long"
  1946. }
  1947. }
  1948. },
  1949. "17": {
  1950. "segments": {
  1951. "type": "string",
  1952. "value": "m0,0l200,0"
  1953. },
  1954. "style": {
  1955. "type": "map<string,string>",
  1956. "value": {
  1957. "stroke": "#000000",
  1958. "stroke-dasharray": "",
  1959. "fill": "#ffffff",
  1960. "fill-opacity": 0.75,
  1961. "font-size": "20px",
  1962. "stroke-width": 2,
  1963. "arrow-start": "none",
  1964. "arrow-end": "none"
  1965. }
  1966. },
  1967. "mapper": {
  1968. "type": "code",
  1969. "value": ""
  1970. },
  1971. "parser": {
  1972. "type": "code",
  1973. "value": ""
  1974. },
  1975. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  1976. "position": {
  1977. "type": "list<double>",
  1978. "value": [
  1979. 1,
  1980. 26
  1981. ]
  1982. },
  1983. "orientation": {
  1984. "type": "double",
  1985. "value": 0
  1986. },
  1987. "scale": {
  1988. "type": "list<double>",
  1989. "value": [
  1990. 1,
  1991. 1
  1992. ]
  1993. }
  1994. },
  1995. "18": {
  1996. "textContent": {
  1997. "type": "string",
  1998. "value": "rx\nry"
  1999. },
  2000. "style": {
  2001. "type": "map<string,string>",
  2002. "value": {
  2003. "stroke": "#000000",
  2004. "stroke-dasharray": "",
  2005. "fill": "#ffffff",
  2006. "fill-opacity": 0.75,
  2007. "font-size": "13px",
  2008. "stroke-width": 1,
  2009. "arrow-start": "none",
  2010. "arrow-end": "none"
  2011. }
  2012. },
  2013. "mapper": {
  2014. "type": "code",
  2015. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  2016. },
  2017. "parser": {
  2018. "type": "code",
  2019. "value": ""
  2020. },
  2021. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2022. "position": {
  2023. "type": "list<double>",
  2024. "value": [
  2025. 3,
  2026. 25
  2027. ]
  2028. },
  2029. "orientation": {
  2030. "type": "double",
  2031. "value": 0
  2032. },
  2033. "scale": {
  2034. "type": "list<double>",
  2035. "value": [
  2036. 1,
  2037. 1
  2038. ]
  2039. }
  2040. },
  2041. "19": {
  2042. "width": {
  2043. "type": "boolean",
  2044. "value": true
  2045. },
  2046. "ratio": {
  2047. "type": "double",
  2048. "value": 1
  2049. },
  2050. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  2051. "position": {
  2052. "type": "list<double>",
  2053. "value": [
  2054. 168.09129891774523,
  2055. 30.625911571363645
  2056. ]
  2057. },
  2058. "orientation": {
  2059. "type": "double",
  2060. "value": 0
  2061. },
  2062. "scale": {
  2063. "type": "list<double>",
  2064. "value": [
  2065. 1,
  2066. 1
  2067. ]
  2068. },
  2069. "link-style": {
  2070. "type": "map<string,string>",
  2071. "value": {
  2072. "stroke": "#0000ff",
  2073. "stroke-dasharray": "",
  2074. "stroke-opacity": 1,
  2075. "arrow-start": "none",
  2076. "arrow-end": "classic-wide-long"
  2077. }
  2078. }
  2079. },
  2080. "20": {
  2081. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2082. "position": {
  2083. "type": "list<double>",
  2084. "value": [
  2085. 6.49899850809561,
  2086. 18.998998508095553
  2087. ]
  2088. },
  2089. "orientation": {
  2090. "type": "double",
  2091. "value": 0
  2092. },
  2093. "scale": {
  2094. "type": "list<double>",
  2095. "value": [
  2096. 1,
  2097. 1
  2098. ]
  2099. },
  2100. "link-style": {
  2101. "type": "map<string,string>",
  2102. "value": {
  2103. "stroke": "#00ffff",
  2104. "stroke-dasharray": "",
  2105. "stroke-opacity": 0.1,
  2106. "arrow-start": "none",
  2107. "arrow-end": "classic-wide-long"
  2108. }
  2109. }
  2110. }
  2111. },
  2112. "edges": [
  2113. {
  2114. "src": "5",
  2115. "dest": "7"
  2116. },
  2117. {
  2118. "src": "7",
  2119. "dest": "6"
  2120. },
  2121. {
  2122. "src": "17",
  2123. "dest": "19"
  2124. },
  2125. {
  2126. "src": "19",
  2127. "dest": "5"
  2128. },
  2129. {
  2130. "src": "5",
  2131. "dest": "20"
  2132. },
  2133. {
  2134. "src": "20",
  2135. "dest": "18"
  2136. }
  2137. ]
  2138. }
  2139. },
  2140. "$asuri": {
  2141. "type": "string",
  2142. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/5.instance"
  2143. },
  2144. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  2145. },
  2146. "6": {
  2147. "typename": {
  2148. "type": "string",
  2149. "value": "ClassIcon"
  2150. },
  2151. "position": {
  2152. "type": "list<double>",
  2153. "value": [
  2154. 950,
  2155. 475
  2156. ]
  2157. },
  2158. "orientation": {
  2159. "type": "double",
  2160. "value": 0
  2161. },
  2162. "scale": {
  2163. "type": "list<double>",
  2164. "value": [
  2165. 1,
  2166. 1
  2167. ]
  2168. },
  2169. "mapper": {
  2170. "type": "code",
  2171. "value": ""
  2172. },
  2173. "parser": {
  2174. "type": "code",
  2175. "value": ""
  2176. },
  2177. "$contents": {
  2178. "type": "map<string,*>",
  2179. "value": {
  2180. "nodes": {
  2181. "5": {
  2182. "width": {
  2183. "type": "double",
  2184. "value": 200
  2185. },
  2186. "height": {
  2187. "type": "double",
  2188. "value": 125
  2189. },
  2190. "cornerRadius": {
  2191. "type": "double",
  2192. "value": 5
  2193. },
  2194. "style": {
  2195. "type": "map<string,string>",
  2196. "value": {
  2197. "stroke": "#000000",
  2198. "stroke-dasharray": "",
  2199. "fill": "#ffffff",
  2200. "fill-opacity": 0.75,
  2201. "stroke-width": 2
  2202. }
  2203. },
  2204. "mapper": {
  2205. "type": "code",
  2206. "value": ""
  2207. },
  2208. "parser": {
  2209. "type": "code",
  2210. "value": ""
  2211. },
  2212. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2213. "position": {
  2214. "type": "list<double>",
  2215. "value": [
  2216. 0,
  2217. 0
  2218. ]
  2219. },
  2220. "orientation": {
  2221. "type": "double",
  2222. "value": 0
  2223. },
  2224. "scale": {
  2225. "type": "list<double>",
  2226. "value": [
  2227. 1,
  2228. 1
  2229. ]
  2230. }
  2231. },
  2232. "6": {
  2233. "textContent": {
  2234. "type": "string",
  2235. "value": "Polygon"
  2236. },
  2237. "style": {
  2238. "type": "map<string,string>",
  2239. "value": {
  2240. "stroke": "#000000",
  2241. "fill": "#ffffff",
  2242. "fill-opacity": 0.75,
  2243. "font-size": "20px",
  2244. "font-style": "normal"
  2245. }
  2246. },
  2247. "mapper": {
  2248. "type": "code",
  2249. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  2250. },
  2251. "parser": {
  2252. "type": "code",
  2253. "value": "({'name': getAttr('textContent')})"
  2254. },
  2255. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2256. "position": {
  2257. "type": "list<double>",
  2258. "value": [
  2259. 23,
  2260. 2
  2261. ]
  2262. },
  2263. "orientation": {
  2264. "type": "double",
  2265. "value": 0
  2266. },
  2267. "scale": {
  2268. "type": "list<double>",
  2269. "value": [
  2270. 1,
  2271. 1
  2272. ]
  2273. }
  2274. },
  2275. "7": {
  2276. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2277. "position": {
  2278. "type": "list<double>",
  2279. "value": [
  2280. 13.896110991026944,
  2281. 3.0451514439171206
  2282. ]
  2283. },
  2284. "orientation": {
  2285. "type": "double",
  2286. "value": 0
  2287. },
  2288. "scale": {
  2289. "type": "list<double>",
  2290. "value": [
  2291. 1,
  2292. 1
  2293. ]
  2294. },
  2295. "link-style": {
  2296. "type": "map<string,string>",
  2297. "value": {
  2298. "stroke": "#00ffff",
  2299. "stroke-dasharray": "",
  2300. "stroke-opacity": 0.1,
  2301. "arrow-start": "none",
  2302. "arrow-end": "classic-wide-long"
  2303. }
  2304. }
  2305. },
  2306. "17": {
  2307. "segments": {
  2308. "type": "string",
  2309. "value": "m0,0l200,0"
  2310. },
  2311. "style": {
  2312. "type": "map<string,string>",
  2313. "value": {
  2314. "stroke": "#000000",
  2315. "stroke-dasharray": "",
  2316. "fill": "#ffffff",
  2317. "fill-opacity": 0.75,
  2318. "font-size": "20px",
  2319. "stroke-width": 2,
  2320. "arrow-start": "none",
  2321. "arrow-end": "none"
  2322. }
  2323. },
  2324. "mapper": {
  2325. "type": "code",
  2326. "value": ""
  2327. },
  2328. "parser": {
  2329. "type": "code",
  2330. "value": ""
  2331. },
  2332. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2333. "position": {
  2334. "type": "list<double>",
  2335. "value": [
  2336. 1,
  2337. 26
  2338. ]
  2339. },
  2340. "orientation": {
  2341. "type": "double",
  2342. "value": 0
  2343. },
  2344. "scale": {
  2345. "type": "list<double>",
  2346. "value": [
  2347. 1,
  2348. 1
  2349. ]
  2350. }
  2351. },
  2352. "18": {
  2353. "textContent": {
  2354. "type": "string",
  2355. "value": "r\nsides"
  2356. },
  2357. "style": {
  2358. "type": "map<string,string>",
  2359. "value": {
  2360. "stroke": "#000000",
  2361. "stroke-dasharray": "",
  2362. "fill": "#ffffff",
  2363. "fill-opacity": 0.75,
  2364. "font-size": "13px",
  2365. "stroke-width": 1,
  2366. "arrow-start": "none",
  2367. "arrow-end": "none"
  2368. }
  2369. },
  2370. "mapper": {
  2371. "type": "code",
  2372. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  2373. },
  2374. "parser": {
  2375. "type": "code",
  2376. "value": ""
  2377. },
  2378. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2379. "position": {
  2380. "type": "list<double>",
  2381. "value": [
  2382. 3,
  2383. 25
  2384. ]
  2385. },
  2386. "orientation": {
  2387. "type": "double",
  2388. "value": 0
  2389. },
  2390. "scale": {
  2391. "type": "list<double>",
  2392. "value": [
  2393. 1,
  2394. 1
  2395. ]
  2396. }
  2397. },
  2398. "19": {
  2399. "width": {
  2400. "type": "boolean",
  2401. "value": true
  2402. },
  2403. "ratio": {
  2404. "type": "double",
  2405. "value": 1
  2406. },
  2407. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  2408. "position": {
  2409. "type": "list<double>",
  2410. "value": [
  2411. 168.09129891774523,
  2412. 30.625911571363645
  2413. ]
  2414. },
  2415. "orientation": {
  2416. "type": "double",
  2417. "value": 0
  2418. },
  2419. "scale": {
  2420. "type": "list<double>",
  2421. "value": [
  2422. 1,
  2423. 1
  2424. ]
  2425. },
  2426. "link-style": {
  2427. "type": "map<string,string>",
  2428. "value": {
  2429. "stroke": "#0000ff",
  2430. "stroke-dasharray": "",
  2431. "stroke-opacity": 1,
  2432. "arrow-start": "none",
  2433. "arrow-end": "classic-wide-long"
  2434. }
  2435. }
  2436. },
  2437. "20": {
  2438. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2439. "position": {
  2440. "type": "list<double>",
  2441. "value": [
  2442. 6.49899850809561,
  2443. 18.998998508095553
  2444. ]
  2445. },
  2446. "orientation": {
  2447. "type": "double",
  2448. "value": 0
  2449. },
  2450. "scale": {
  2451. "type": "list<double>",
  2452. "value": [
  2453. 1,
  2454. 1
  2455. ]
  2456. },
  2457. "link-style": {
  2458. "type": "map<string,string>",
  2459. "value": {
  2460. "stroke": "#00ffff",
  2461. "stroke-dasharray": "",
  2462. "stroke-opacity": 0.1,
  2463. "arrow-start": "none",
  2464. "arrow-end": "classic-wide-long"
  2465. }
  2466. }
  2467. }
  2468. },
  2469. "edges": [
  2470. {
  2471. "src": "5",
  2472. "dest": "7"
  2473. },
  2474. {
  2475. "src": "7",
  2476. "dest": "6"
  2477. },
  2478. {
  2479. "src": "17",
  2480. "dest": "19"
  2481. },
  2482. {
  2483. "src": "19",
  2484. "dest": "5"
  2485. },
  2486. {
  2487. "src": "5",
  2488. "dest": "20"
  2489. },
  2490. {
  2491. "src": "20",
  2492. "dest": "18"
  2493. }
  2494. ]
  2495. }
  2496. },
  2497. "$asuri": {
  2498. "type": "string",
  2499. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/6.instance"
  2500. },
  2501. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  2502. },
  2503. "7": {
  2504. "typename": {
  2505. "type": "string",
  2506. "value": "ClassIcon"
  2507. },
  2508. "position": {
  2509. "type": "list<double>",
  2510. "value": [
  2511. 950,
  2512. 625
  2513. ]
  2514. },
  2515. "orientation": {
  2516. "type": "double",
  2517. "value": 0
  2518. },
  2519. "scale": {
  2520. "type": "list<double>",
  2521. "value": [
  2522. 1,
  2523. 1
  2524. ]
  2525. },
  2526. "mapper": {
  2527. "type": "code",
  2528. "value": ""
  2529. },
  2530. "parser": {
  2531. "type": "code",
  2532. "value": ""
  2533. },
  2534. "$contents": {
  2535. "type": "map<string,*>",
  2536. "value": {
  2537. "nodes": {
  2538. "5": {
  2539. "width": {
  2540. "type": "double",
  2541. "value": 200
  2542. },
  2543. "height": {
  2544. "type": "double",
  2545. "value": 125
  2546. },
  2547. "cornerRadius": {
  2548. "type": "double",
  2549. "value": 5
  2550. },
  2551. "style": {
  2552. "type": "map<string,string>",
  2553. "value": {
  2554. "stroke": "#000000",
  2555. "stroke-dasharray": "",
  2556. "fill": "#ffffff",
  2557. "fill-opacity": 0.75,
  2558. "stroke-width": 2
  2559. }
  2560. },
  2561. "mapper": {
  2562. "type": "code",
  2563. "value": ""
  2564. },
  2565. "parser": {
  2566. "type": "code",
  2567. "value": ""
  2568. },
  2569. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2570. "position": {
  2571. "type": "list<double>",
  2572. "value": [
  2573. 0,
  2574. 0
  2575. ]
  2576. },
  2577. "orientation": {
  2578. "type": "double",
  2579. "value": 0
  2580. },
  2581. "scale": {
  2582. "type": "list<double>",
  2583. "value": [
  2584. 1,
  2585. 1
  2586. ]
  2587. }
  2588. },
  2589. "6": {
  2590. "textContent": {
  2591. "type": "string",
  2592. "value": "Star"
  2593. },
  2594. "style": {
  2595. "type": "map<string,string>",
  2596. "value": {
  2597. "stroke": "#000000",
  2598. "fill": "#ffffff",
  2599. "fill-opacity": 0.75,
  2600. "font-size": "20px",
  2601. "font-style": "normal"
  2602. }
  2603. },
  2604. "mapper": {
  2605. "type": "code",
  2606. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  2607. },
  2608. "parser": {
  2609. "type": "code",
  2610. "value": "({'name': getAttr('textContent')})"
  2611. },
  2612. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2613. "position": {
  2614. "type": "list<double>",
  2615. "value": [
  2616. 23,
  2617. 2
  2618. ]
  2619. },
  2620. "orientation": {
  2621. "type": "double",
  2622. "value": 0
  2623. },
  2624. "scale": {
  2625. "type": "list<double>",
  2626. "value": [
  2627. 1,
  2628. 1
  2629. ]
  2630. }
  2631. },
  2632. "7": {
  2633. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2634. "position": {
  2635. "type": "list<double>",
  2636. "value": [
  2637. 13.896110991026944,
  2638. 3.0451514439171206
  2639. ]
  2640. },
  2641. "orientation": {
  2642. "type": "double",
  2643. "value": 0
  2644. },
  2645. "scale": {
  2646. "type": "list<double>",
  2647. "value": [
  2648. 1,
  2649. 1
  2650. ]
  2651. },
  2652. "link-style": {
  2653. "type": "map<string,string>",
  2654. "value": {
  2655. "stroke": "#00ffff",
  2656. "stroke-dasharray": "",
  2657. "stroke-opacity": 0.1,
  2658. "arrow-start": "none",
  2659. "arrow-end": "classic-wide-long"
  2660. }
  2661. }
  2662. },
  2663. "17": {
  2664. "segments": {
  2665. "type": "string",
  2666. "value": "m0,0l200,0"
  2667. },
  2668. "style": {
  2669. "type": "map<string,string>",
  2670. "value": {
  2671. "stroke": "#000000",
  2672. "stroke-dasharray": "",
  2673. "fill": "#ffffff",
  2674. "fill-opacity": 0.75,
  2675. "font-size": "20px",
  2676. "stroke-width": 2,
  2677. "arrow-start": "none",
  2678. "arrow-end": "none"
  2679. }
  2680. },
  2681. "mapper": {
  2682. "type": "code",
  2683. "value": ""
  2684. },
  2685. "parser": {
  2686. "type": "code",
  2687. "value": ""
  2688. },
  2689. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  2690. "position": {
  2691. "type": "list<double>",
  2692. "value": [
  2693. 1,
  2694. 26
  2695. ]
  2696. },
  2697. "orientation": {
  2698. "type": "double",
  2699. "value": 0
  2700. },
  2701. "scale": {
  2702. "type": "list<double>",
  2703. "value": [
  2704. 1,
  2705. 1
  2706. ]
  2707. }
  2708. },
  2709. "18": {
  2710. "textContent": {
  2711. "type": "string",
  2712. "value": "r\nrays"
  2713. },
  2714. "style": {
  2715. "type": "map<string,string>",
  2716. "value": {
  2717. "stroke": "#000000",
  2718. "stroke-dasharray": "",
  2719. "fill": "#ffffff",
  2720. "fill-opacity": 0.75,
  2721. "font-size": "13px",
  2722. "stroke-width": 1,
  2723. "arrow-start": "none",
  2724. "arrow-end": "none"
  2725. }
  2726. },
  2727. "mapper": {
  2728. "type": "code",
  2729. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  2730. },
  2731. "parser": {
  2732. "type": "code",
  2733. "value": ""
  2734. },
  2735. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2736. "position": {
  2737. "type": "list<double>",
  2738. "value": [
  2739. 3,
  2740. 25
  2741. ]
  2742. },
  2743. "orientation": {
  2744. "type": "double",
  2745. "value": 0
  2746. },
  2747. "scale": {
  2748. "type": "list<double>",
  2749. "value": [
  2750. 1,
  2751. 1
  2752. ]
  2753. }
  2754. },
  2755. "19": {
  2756. "width": {
  2757. "type": "boolean",
  2758. "value": true
  2759. },
  2760. "ratio": {
  2761. "type": "double",
  2762. "value": 1
  2763. },
  2764. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  2765. "position": {
  2766. "type": "list<double>",
  2767. "value": [
  2768. 168.09129891774523,
  2769. 30.625911571363645
  2770. ]
  2771. },
  2772. "orientation": {
  2773. "type": "double",
  2774. "value": 0
  2775. },
  2776. "scale": {
  2777. "type": "list<double>",
  2778. "value": [
  2779. 1,
  2780. 1
  2781. ]
  2782. },
  2783. "link-style": {
  2784. "type": "map<string,string>",
  2785. "value": {
  2786. "stroke": "#0000ff",
  2787. "stroke-dasharray": "",
  2788. "stroke-opacity": 1,
  2789. "arrow-start": "none",
  2790. "arrow-end": "classic-wide-long"
  2791. }
  2792. }
  2793. },
  2794. "20": {
  2795. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2796. "position": {
  2797. "type": "list<double>",
  2798. "value": [
  2799. 6.49899850809561,
  2800. 18.998998508095553
  2801. ]
  2802. },
  2803. "orientation": {
  2804. "type": "double",
  2805. "value": 0
  2806. },
  2807. "scale": {
  2808. "type": "list<double>",
  2809. "value": [
  2810. 1,
  2811. 1
  2812. ]
  2813. },
  2814. "link-style": {
  2815. "type": "map<string,string>",
  2816. "value": {
  2817. "stroke": "#00ffff",
  2818. "stroke-dasharray": "",
  2819. "stroke-opacity": 0.1,
  2820. "arrow-start": "none",
  2821. "arrow-end": "classic-wide-long"
  2822. }
  2823. }
  2824. }
  2825. },
  2826. "edges": [
  2827. {
  2828. "src": "5",
  2829. "dest": "7"
  2830. },
  2831. {
  2832. "src": "7",
  2833. "dest": "6"
  2834. },
  2835. {
  2836. "src": "17",
  2837. "dest": "19"
  2838. },
  2839. {
  2840. "src": "19",
  2841. "dest": "5"
  2842. },
  2843. {
  2844. "src": "5",
  2845. "dest": "20"
  2846. },
  2847. {
  2848. "src": "20",
  2849. "dest": "18"
  2850. }
  2851. ]
  2852. }
  2853. },
  2854. "$asuri": {
  2855. "type": "string",
  2856. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/7.instance"
  2857. },
  2858. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  2859. },
  2860. "8": {
  2861. "typename": {
  2862. "type": "string",
  2863. "value": "ClassIcon"
  2864. },
  2865. "position": {
  2866. "type": "list<double>",
  2867. "value": [
  2868. 900,
  2869. 775
  2870. ]
  2871. },
  2872. "orientation": {
  2873. "type": "double",
  2874. "value": 0
  2875. },
  2876. "scale": {
  2877. "type": "list<double>",
  2878. "value": [
  2879. 1,
  2880. 1
  2881. ]
  2882. },
  2883. "mapper": {
  2884. "type": "code",
  2885. "value": ""
  2886. },
  2887. "parser": {
  2888. "type": "code",
  2889. "value": ""
  2890. },
  2891. "$contents": {
  2892. "type": "map<string,*>",
  2893. "value": {
  2894. "nodes": {
  2895. "5": {
  2896. "width": {
  2897. "type": "double",
  2898. "value": 200
  2899. },
  2900. "height": {
  2901. "type": "double",
  2902. "value": 125
  2903. },
  2904. "cornerRadius": {
  2905. "type": "double",
  2906. "value": 5
  2907. },
  2908. "style": {
  2909. "type": "map<string,string>",
  2910. "value": {
  2911. "stroke": "#000000",
  2912. "stroke-dasharray": "",
  2913. "fill": "#ffffff",
  2914. "fill-opacity": 0.75,
  2915. "stroke-width": 2
  2916. }
  2917. },
  2918. "mapper": {
  2919. "type": "code",
  2920. "value": ""
  2921. },
  2922. "parser": {
  2923. "type": "code",
  2924. "value": ""
  2925. },
  2926. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  2927. "position": {
  2928. "type": "list<double>",
  2929. "value": [
  2930. 0,
  2931. 0
  2932. ]
  2933. },
  2934. "orientation": {
  2935. "type": "double",
  2936. "value": 0
  2937. },
  2938. "scale": {
  2939. "type": "list<double>",
  2940. "value": [
  2941. 1,
  2942. 1
  2943. ]
  2944. }
  2945. },
  2946. "6": {
  2947. "textContent": {
  2948. "type": "string",
  2949. "value": "Text"
  2950. },
  2951. "style": {
  2952. "type": "map<string,string>",
  2953. "value": {
  2954. "stroke": "#000000",
  2955. "fill": "#ffffff",
  2956. "fill-opacity": 0.75,
  2957. "font-size": "20px",
  2958. "font-style": "normal"
  2959. }
  2960. },
  2961. "mapper": {
  2962. "type": "code",
  2963. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  2964. },
  2965. "parser": {
  2966. "type": "code",
  2967. "value": "({'name': getAttr('textContent')})"
  2968. },
  2969. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  2970. "position": {
  2971. "type": "list<double>",
  2972. "value": [
  2973. 23,
  2974. 2
  2975. ]
  2976. },
  2977. "orientation": {
  2978. "type": "double",
  2979. "value": 0
  2980. },
  2981. "scale": {
  2982. "type": "list<double>",
  2983. "value": [
  2984. 1,
  2985. 1
  2986. ]
  2987. }
  2988. },
  2989. "7": {
  2990. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  2991. "position": {
  2992. "type": "list<double>",
  2993. "value": [
  2994. 13.896110991026944,
  2995. 3.0451514439171206
  2996. ]
  2997. },
  2998. "orientation": {
  2999. "type": "double",
  3000. "value": 0
  3001. },
  3002. "scale": {
  3003. "type": "list<double>",
  3004. "value": [
  3005. 1,
  3006. 1
  3007. ]
  3008. },
  3009. "link-style": {
  3010. "type": "map<string,string>",
  3011. "value": {
  3012. "stroke": "#00ffff",
  3013. "stroke-dasharray": "",
  3014. "stroke-opacity": 0.1,
  3015. "arrow-start": "none",
  3016. "arrow-end": "classic-wide-long"
  3017. }
  3018. }
  3019. },
  3020. "17": {
  3021. "segments": {
  3022. "type": "string",
  3023. "value": "m0,0l200,0"
  3024. },
  3025. "style": {
  3026. "type": "map<string,string>",
  3027. "value": {
  3028. "stroke": "#000000",
  3029. "stroke-dasharray": "",
  3030. "fill": "#ffffff",
  3031. "fill-opacity": 0.75,
  3032. "font-size": "20px",
  3033. "stroke-width": 2,
  3034. "arrow-start": "none",
  3035. "arrow-end": "none"
  3036. }
  3037. },
  3038. "mapper": {
  3039. "type": "code",
  3040. "value": ""
  3041. },
  3042. "parser": {
  3043. "type": "code",
  3044. "value": ""
  3045. },
  3046. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3047. "position": {
  3048. "type": "list<double>",
  3049. "value": [
  3050. 1,
  3051. 26
  3052. ]
  3053. },
  3054. "orientation": {
  3055. "type": "double",
  3056. "value": 0
  3057. },
  3058. "scale": {
  3059. "type": "list<double>",
  3060. "value": [
  3061. 1,
  3062. 1
  3063. ]
  3064. }
  3065. },
  3066. "18": {
  3067. "textContent": {
  3068. "type": "string",
  3069. "value": "textContent\nstyle"
  3070. },
  3071. "style": {
  3072. "type": "map<string,string>",
  3073. "value": {
  3074. "stroke": "#000000",
  3075. "stroke-dasharray": "",
  3076. "fill": "#ffffff",
  3077. "fill-opacity": 0.75,
  3078. "font-size": "13px",
  3079. "stroke-width": 1,
  3080. "arrow-start": "none",
  3081. "arrow-end": "none"
  3082. }
  3083. },
  3084. "mapper": {
  3085. "type": "code",
  3086. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  3087. },
  3088. "parser": {
  3089. "type": "code",
  3090. "value": ""
  3091. },
  3092. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3093. "position": {
  3094. "type": "list<double>",
  3095. "value": [
  3096. 3,
  3097. 25
  3098. ]
  3099. },
  3100. "orientation": {
  3101. "type": "double",
  3102. "value": 0
  3103. },
  3104. "scale": {
  3105. "type": "list<double>",
  3106. "value": [
  3107. 1,
  3108. 1
  3109. ]
  3110. }
  3111. },
  3112. "19": {
  3113. "width": {
  3114. "type": "boolean",
  3115. "value": true
  3116. },
  3117. "ratio": {
  3118. "type": "double",
  3119. "value": 1
  3120. },
  3121. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  3122. "position": {
  3123. "type": "list<double>",
  3124. "value": [
  3125. 168.09129891774523,
  3126. 30.625911571363645
  3127. ]
  3128. },
  3129. "orientation": {
  3130. "type": "double",
  3131. "value": 0
  3132. },
  3133. "scale": {
  3134. "type": "list<double>",
  3135. "value": [
  3136. 1,
  3137. 1
  3138. ]
  3139. },
  3140. "link-style": {
  3141. "type": "map<string,string>",
  3142. "value": {
  3143. "stroke": "#0000ff",
  3144. "stroke-dasharray": "",
  3145. "stroke-opacity": 1,
  3146. "arrow-start": "none",
  3147. "arrow-end": "classic-wide-long"
  3148. }
  3149. }
  3150. },
  3151. "20": {
  3152. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3153. "position": {
  3154. "type": "list<double>",
  3155. "value": [
  3156. 6.49899850809561,
  3157. 18.998998508095553
  3158. ]
  3159. },
  3160. "orientation": {
  3161. "type": "double",
  3162. "value": 0
  3163. },
  3164. "scale": {
  3165. "type": "list<double>",
  3166. "value": [
  3167. 1,
  3168. 1
  3169. ]
  3170. },
  3171. "link-style": {
  3172. "type": "map<string,string>",
  3173. "value": {
  3174. "stroke": "#00ffff",
  3175. "stroke-dasharray": "",
  3176. "stroke-opacity": 0.1,
  3177. "arrow-start": "none",
  3178. "arrow-end": "classic-wide-long"
  3179. }
  3180. }
  3181. }
  3182. },
  3183. "edges": [
  3184. {
  3185. "src": "5",
  3186. "dest": "7"
  3187. },
  3188. {
  3189. "src": "7",
  3190. "dest": "6"
  3191. },
  3192. {
  3193. "src": "17",
  3194. "dest": "19"
  3195. },
  3196. {
  3197. "src": "19",
  3198. "dest": "5"
  3199. },
  3200. {
  3201. "src": "5",
  3202. "dest": "20"
  3203. },
  3204. {
  3205. "src": "20",
  3206. "dest": "18"
  3207. }
  3208. ]
  3209. }
  3210. },
  3211. "$asuri": {
  3212. "type": "string",
  3213. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/8.instance"
  3214. },
  3215. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  3216. },
  3217. "9": {
  3218. "typename": {
  3219. "type": "string",
  3220. "value": "ClassIcon"
  3221. },
  3222. "position": {
  3223. "type": "list<double>",
  3224. "value": [
  3225. 675,
  3226. 825
  3227. ]
  3228. },
  3229. "orientation": {
  3230. "type": "double",
  3231. "value": 0
  3232. },
  3233. "scale": {
  3234. "type": "list<double>",
  3235. "value": [
  3236. 1,
  3237. 1
  3238. ]
  3239. },
  3240. "mapper": {
  3241. "type": "code",
  3242. "value": ""
  3243. },
  3244. "parser": {
  3245. "type": "code",
  3246. "value": ""
  3247. },
  3248. "$contents": {
  3249. "type": "map<string,*>",
  3250. "value": {
  3251. "nodes": {
  3252. "5": {
  3253. "width": {
  3254. "type": "double",
  3255. "value": 200
  3256. },
  3257. "height": {
  3258. "type": "double",
  3259. "value": 125
  3260. },
  3261. "cornerRadius": {
  3262. "type": "double",
  3263. "value": 5
  3264. },
  3265. "style": {
  3266. "type": "map<string,string>",
  3267. "value": {
  3268. "stroke": "#000000",
  3269. "stroke-dasharray": "",
  3270. "fill": "#ffffff",
  3271. "fill-opacity": 0.75,
  3272. "stroke-width": 2
  3273. }
  3274. },
  3275. "mapper": {
  3276. "type": "code",
  3277. "value": ""
  3278. },
  3279. "parser": {
  3280. "type": "code",
  3281. "value": ""
  3282. },
  3283. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  3284. "position": {
  3285. "type": "list<double>",
  3286. "value": [
  3287. 0,
  3288. 0
  3289. ]
  3290. },
  3291. "orientation": {
  3292. "type": "double",
  3293. "value": 0
  3294. },
  3295. "scale": {
  3296. "type": "list<double>",
  3297. "value": [
  3298. 1,
  3299. 1
  3300. ]
  3301. }
  3302. },
  3303. "6": {
  3304. "textContent": {
  3305. "type": "string",
  3306. "value": "Path"
  3307. },
  3308. "style": {
  3309. "type": "map<string,string>",
  3310. "value": {
  3311. "stroke": "#000000",
  3312. "fill": "#ffffff",
  3313. "fill-opacity": 0.75,
  3314. "font-size": "20px",
  3315. "font-style": "normal"
  3316. }
  3317. },
  3318. "mapper": {
  3319. "type": "code",
  3320. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  3321. },
  3322. "parser": {
  3323. "type": "code",
  3324. "value": "({'name': getAttr('textContent')})"
  3325. },
  3326. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3327. "position": {
  3328. "type": "list<double>",
  3329. "value": [
  3330. 23,
  3331. 2
  3332. ]
  3333. },
  3334. "orientation": {
  3335. "type": "double",
  3336. "value": 0
  3337. },
  3338. "scale": {
  3339. "type": "list<double>",
  3340. "value": [
  3341. 1,
  3342. 1
  3343. ]
  3344. }
  3345. },
  3346. "7": {
  3347. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3348. "position": {
  3349. "type": "list<double>",
  3350. "value": [
  3351. 13.896110991026944,
  3352. 3.0451514439171206
  3353. ]
  3354. },
  3355. "orientation": {
  3356. "type": "double",
  3357. "value": 0
  3358. },
  3359. "scale": {
  3360. "type": "list<double>",
  3361. "value": [
  3362. 1,
  3363. 1
  3364. ]
  3365. },
  3366. "link-style": {
  3367. "type": "map<string,string>",
  3368. "value": {
  3369. "stroke": "#00ffff",
  3370. "stroke-dasharray": "",
  3371. "stroke-opacity": 0.1,
  3372. "arrow-start": "none",
  3373. "arrow-end": "classic-wide-long"
  3374. }
  3375. }
  3376. },
  3377. "17": {
  3378. "segments": {
  3379. "type": "string",
  3380. "value": "m0,0l200,0"
  3381. },
  3382. "style": {
  3383. "type": "map<string,string>",
  3384. "value": {
  3385. "stroke": "#000000",
  3386. "stroke-dasharray": "",
  3387. "fill": "#ffffff",
  3388. "fill-opacity": 0.75,
  3389. "font-size": "20px",
  3390. "stroke-width": 2,
  3391. "arrow-start": "none",
  3392. "arrow-end": "none"
  3393. }
  3394. },
  3395. "mapper": {
  3396. "type": "code",
  3397. "value": ""
  3398. },
  3399. "parser": {
  3400. "type": "code",
  3401. "value": ""
  3402. },
  3403. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  3404. "position": {
  3405. "type": "list<double>",
  3406. "value": [
  3407. 1,
  3408. 26
  3409. ]
  3410. },
  3411. "orientation": {
  3412. "type": "double",
  3413. "value": 0
  3414. },
  3415. "scale": {
  3416. "type": "list<double>",
  3417. "value": [
  3418. 1,
  3419. 1
  3420. ]
  3421. }
  3422. },
  3423. "18": {
  3424. "textContent": {
  3425. "type": "string",
  3426. "value": "segments"
  3427. },
  3428. "style": {
  3429. "type": "map<string,string>",
  3430. "value": {
  3431. "stroke": "#000000",
  3432. "stroke-dasharray": "",
  3433. "fill": "#ffffff",
  3434. "fill-opacity": 0.75,
  3435. "font-size": "13px",
  3436. "stroke-width": 1,
  3437. "arrow-start": "none",
  3438. "arrow-end": "none"
  3439. }
  3440. },
  3441. "mapper": {
  3442. "type": "code",
  3443. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  3444. },
  3445. "parser": {
  3446. "type": "code",
  3447. "value": ""
  3448. },
  3449. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  3450. "position": {
  3451. "type": "list<double>",
  3452. "value": [
  3453. 3,
  3454. 25
  3455. ]
  3456. },
  3457. "orientation": {
  3458. "type": "double",
  3459. "value": 0
  3460. },
  3461. "scale": {
  3462. "type": "list<double>",
  3463. "value": [
  3464. 1,
  3465. 1
  3466. ]
  3467. }
  3468. },
  3469. "19": {
  3470. "width": {
  3471. "type": "boolean",
  3472. "value": true
  3473. },
  3474. "ratio": {
  3475. "type": "double",
  3476. "value": 1
  3477. },
  3478. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  3479. "position": {
  3480. "type": "list<double>",
  3481. "value": [
  3482. 168.09129891774523,
  3483. 30.625911571363645
  3484. ]
  3485. },
  3486. "orientation": {
  3487. "type": "double",
  3488. "value": 0
  3489. },
  3490. "scale": {
  3491. "type": "list<double>",
  3492. "value": [
  3493. 1,
  3494. 1
  3495. ]
  3496. },
  3497. "link-style": {
  3498. "type": "map<string,string>",
  3499. "value": {
  3500. "stroke": "#0000ff",
  3501. "stroke-dasharray": "",
  3502. "stroke-opacity": 1,
  3503. "arrow-start": "none",
  3504. "arrow-end": "classic-wide-long"
  3505. }
  3506. }
  3507. },
  3508. "20": {
  3509. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  3510. "position": {
  3511. "type": "list<double>",
  3512. "value": [
  3513. 6.49899850809561,
  3514. 18.998998508095553
  3515. ]
  3516. },
  3517. "orientation": {
  3518. "type": "double",
  3519. "value": 0
  3520. },
  3521. "scale": {
  3522. "type": "list<double>",
  3523. "value": [
  3524. 1,
  3525. 1
  3526. ]
  3527. },
  3528. "link-style": {
  3529. "type": "map<string,string>",
  3530. "value": {
  3531. "stroke": "#00ffff",
  3532. "stroke-dasharray": "",
  3533. "stroke-opacity": 0.1,
  3534. "arrow-start": "none",
  3535. "arrow-end": "classic-wide-long"
  3536. }
  3537. }
  3538. }
  3539. },
  3540. "edges": [
  3541. {
  3542. "src": "5",
  3543. "dest": "7"
  3544. },
  3545. {
  3546. "src": "7",
  3547. "dest": "6"
  3548. },
  3549. {
  3550. "src": "17",
  3551. "dest": "19"
  3552. },
  3553. {
  3554. "src": "19",
  3555. "dest": "5"
  3556. },
  3557. {
  3558. "src": "5",
  3559. "dest": "20"
  3560. },
  3561. {
  3562. "src": "20",
  3563. "dest": "18"
  3564. }
  3565. ]
  3566. }
  3567. },
  3568. "$asuri": {
  3569. "type": "string",
  3570. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/9.instance"
  3571. },
  3572. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  3573. },
  3574. "10": {
  3575. "link-style": {
  3576. "type": "map<string,string>",
  3577. "value": {
  3578. "stroke": "#000000",
  3579. "stroke-dasharray": "- ",
  3580. "stroke-opacity": 1,
  3581. "stroke-width": 2,
  3582. "arrow-start": "none",
  3583. "arrow-end": "classic-wide-long"
  3584. }
  3585. },
  3586. "typename": {
  3587. "type": "string",
  3588. "value": "InheritanceLink"
  3589. },
  3590. "position": {
  3591. "type": "list<double>",
  3592. "value": [
  3593. "685.9103202998408,50%",
  3594. "362.1206405490237,50%"
  3595. ]
  3596. },
  3597. "orientation": {
  3598. "type": "double",
  3599. "value": 0
  3600. },
  3601. "scale": {
  3602. "type": "list<double>",
  3603. "value": [
  3604. 1,
  3605. 1
  3606. ]
  3607. },
  3608. "mapper": {
  3609. "type": "code",
  3610. "value": ""
  3611. },
  3612. "parser": {
  3613. "type": "code",
  3614. "value": ""
  3615. },
  3616. "$contents": {
  3617. "type": "map<string,*>",
  3618. "value": {
  3619. "nodes": {},
  3620. "edges": []
  3621. }
  3622. },
  3623. "$asuri": {
  3624. "type": "string",
  3625. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/10.instance"
  3626. },
  3627. "$segments": {
  3628. "type": "map<string,list<string>>",
  3629. "value": {
  3630. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/3.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/10.instance": "M771,249L685.9103202998408,362.1206405490237",
  3631. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/10.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M685.955351631154,362.0600626866617L602.0005740519408,474.9992277634605"
  3632. }
  3633. },
  3634. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  3635. },
  3636. "11": {
  3637. "link-style": {
  3638. "type": "map<string,string>",
  3639. "value": {
  3640. "stroke": "#000000",
  3641. "stroke-dasharray": "- ",
  3642. "stroke-opacity": 1,
  3643. "stroke-width": 2,
  3644. "arrow-start": "none",
  3645. "arrow-end": "classic-wide-long"
  3646. }
  3647. },
  3648. "typename": {
  3649. "type": "string",
  3650. "value": "InheritanceLink"
  3651. },
  3652. "position": {
  3653. "type": "list<double>",
  3654. "value": [
  3655. "765.8736842266695,50%",
  3656. "387.0817337356844,50%"
  3657. ]
  3658. },
  3659. "orientation": {
  3660. "type": "double",
  3661. "value": 0
  3662. },
  3663. "scale": {
  3664. "type": "list<double>",
  3665. "value": [
  3666. 1,
  3667. 1
  3668. ]
  3669. },
  3670. "mapper": {
  3671. "type": "code",
  3672. "value": ""
  3673. },
  3674. "parser": {
  3675. "type": "code",
  3676. "value": ""
  3677. },
  3678. "$contents": {
  3679. "type": "map<string,*>",
  3680. "value": {
  3681. "nodes": {},
  3682. "edges": []
  3683. }
  3684. },
  3685. "$asuri": {
  3686. "type": "string",
  3687. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/11.instance"
  3688. },
  3689. "$segments": {
  3690. "type": "map<string,list<string>>",
  3691. "value": {
  3692. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/4.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/11.instance": "M901,298L765.8736842266695,387.0817337356844",
  3693. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/11.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M765.937076749592,387.0407150443816L630.0007034911321,474.99954479985576"
  3694. }
  3695. },
  3696. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  3697. },
  3698. "12": {
  3699. "link-style": {
  3700. "type": "map<string,string>",
  3701. "value": {
  3702. "stroke": "#000000",
  3703. "stroke-dasharray": "- ",
  3704. "stroke-opacity": 1,
  3705. "stroke-width": 2,
  3706. "arrow-start": "none",
  3707. "arrow-end": "classic-wide-long"
  3708. }
  3709. },
  3710. "typename": {
  3711. "type": "string",
  3712. "value": "InheritanceLink"
  3713. },
  3714. "position": {
  3715. "type": "list<double>",
  3716. "value": [
  3717. "821.8614545698813,50%",
  3718. "454.55836362607363,50%"
  3719. ]
  3720. },
  3721. "orientation": {
  3722. "type": "double",
  3723. "value": 0
  3724. },
  3725. "scale": {
  3726. "type": "list<double>",
  3727. "value": [
  3728. 1,
  3729. 1
  3730. ]
  3731. },
  3732. "mapper": {
  3733. "type": "code",
  3734. "value": ""
  3735. },
  3736. "parser": {
  3737. "type": "code",
  3738. "value": ""
  3739. },
  3740. "$contents": {
  3741. "type": "map<string,*>",
  3742. "value": {
  3743. "nodes": {},
  3744. "edges": []
  3745. }
  3746. },
  3747. "$asuri": {
  3748. "type": "string",
  3749. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/12.instance"
  3750. },
  3751. "$segments": {
  3752. "type": "map<string,list<string>>",
  3753. "value": {
  3754. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/5.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/12.instance": "M949,400L821.8614545698813,454.55836362607363",
  3755. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/12.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M821.9310295567326,454.5290544780693L695.000906183453,507.9996182613013"
  3756. }
  3757. },
  3758. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  3759. },
  3760. "13": {
  3761. "link-style": {
  3762. "type": "map<string,string>",
  3763. "value": {
  3764. "stroke": "#000000",
  3765. "stroke-dasharray": "- ",
  3766. "stroke-opacity": 1,
  3767. "stroke-width": 2,
  3768. "arrow-start": "none",
  3769. "arrow-end": "classic-wide-long"
  3770. }
  3771. },
  3772. "typename": {
  3773. "type": "string",
  3774. "value": "InheritanceLink"
  3775. },
  3776. "position": {
  3777. "type": "list<double>",
  3778. "value": [
  3779. "822.5,50%",
  3780. "540,50%"
  3781. ]
  3782. },
  3783. "orientation": {
  3784. "type": "double",
  3785. "value": 0
  3786. },
  3787. "scale": {
  3788. "type": "list<double>",
  3789. "value": [
  3790. 1,
  3791. 1
  3792. ]
  3793. },
  3794. "mapper": {
  3795. "type": "code",
  3796. "value": ""
  3797. },
  3798. "parser": {
  3799. "type": "code",
  3800. "value": ""
  3801. },
  3802. "$contents": {
  3803. "type": "map<string,*>",
  3804. "value": {
  3805. "nodes": {},
  3806. "edges": []
  3807. }
  3808. },
  3809. "$asuri": {
  3810. "type": "string",
  3811. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/13.instance"
  3812. },
  3813. "$segments": {
  3814. "type": "map<string,list<string>>",
  3815. "value": {
  3816. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/6.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/13.instance": "M950,540L822.5,540",
  3817. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/13.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M822.4995238095238,540L696.0004740583356,540"
  3818. }
  3819. },
  3820. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  3821. },
  3822. "14": {
  3823. "link-style": {
  3824. "type": "map<string,string>",
  3825. "value": {
  3826. "stroke": "#000000",
  3827. "stroke-dasharray": "- ",
  3828. "stroke-opacity": 1,
  3829. "stroke-width": 2,
  3830. "arrow-start": "none",
  3831. "arrow-end": "classic-wide-long"
  3832. }
  3833. },
  3834. "typename": {
  3835. "type": "string",
  3836. "value": "InheritanceLink"
  3837. },
  3838. "position": {
  3839. "type": "list<double>",
  3840. "value": [
  3841. "822.5,50%",
  3842. "630.5,50%"
  3843. ]
  3844. },
  3845. "orientation": {
  3846. "type": "double",
  3847. "value": 0
  3848. },
  3849. "scale": {
  3850. "type": "list<double>",
  3851. "value": [
  3852. 1,
  3853. 1
  3854. ]
  3855. },
  3856. "mapper": {
  3857. "type": "code",
  3858. "value": ""
  3859. },
  3860. "parser": {
  3861. "type": "code",
  3862. "value": ""
  3863. },
  3864. "$contents": {
  3865. "type": "map<string,*>",
  3866. "value": {
  3867. "nodes": {},
  3868. "edges": []
  3869. }
  3870. },
  3871. "$asuri": {
  3872. "type": "string",
  3873. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/14.instance"
  3874. },
  3875. "$segments": {
  3876. "type": "map<string,list<string>>",
  3877. "value": {
  3878. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/7.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/14.instance": "M949,697L822.5,630.5",
  3879. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/14.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M822.4339948697947,630.4650251700506L697.0008396433576,564.0004449106236"
  3880. }
  3881. },
  3882. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  3883. },
  3884. "16": {
  3885. "link-style": {
  3886. "type": "map<string,string>",
  3887. "value": {
  3888. "stroke": "#000000",
  3889. "stroke-dasharray": "- ",
  3890. "stroke-opacity": 1,
  3891. "stroke-width": 2,
  3892. "arrow-start": "none",
  3893. "arrow-end": "classic-wide-long"
  3894. }
  3895. },
  3896. "typename": {
  3897. "type": "string",
  3898. "value": "InheritanceLink"
  3899. },
  3900. "position": {
  3901. "type": "list<double>",
  3902. "value": [
  3903. "770.5,50%",
  3904. "687,50%"
  3905. ]
  3906. },
  3907. "orientation": {
  3908. "type": "double",
  3909. "value": 0
  3910. },
  3911. "scale": {
  3912. "type": "list<double>",
  3913. "value": [
  3914. 1,
  3915. 1
  3916. ]
  3917. },
  3918. "mapper": {
  3919. "type": "code",
  3920. "value": ""
  3921. },
  3922. "parser": {
  3923. "type": "code",
  3924. "value": ""
  3925. },
  3926. "$contents": {
  3927. "type": "map<string,*>",
  3928. "value": {
  3929. "nodes": {},
  3930. "edges": []
  3931. }
  3932. },
  3933. "$asuri": {
  3934. "type": "string",
  3935. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/16.instance"
  3936. },
  3937. "$segments": {
  3938. "type": "map<string,list<string>>",
  3939. "value": {
  3940. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/8.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/16.instance": "M902,775L770.5,687",
  3941. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/16.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M770.4381772316192,686.9579891612547L641.000713341121,599.0004847414568"
  3942. }
  3943. },
  3944. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  3945. },
  3946. "17": {
  3947. "link-style": {
  3948. "type": "map<string,string>",
  3949. "value": {
  3950. "stroke": "#000000",
  3951. "stroke-dasharray": "- ",
  3952. "stroke-opacity": 1,
  3953. "stroke-width": 2,
  3954. "arrow-start": "none",
  3955. "arrow-end": "classic-wide-long"
  3956. }
  3957. },
  3958. "typename": {
  3959. "type": "string",
  3960. "value": "InheritanceLink"
  3961. },
  3962. "position": {
  3963. "type": "list<double>",
  3964. "value": [
  3965. "688,50%",
  3966. "713,50%"
  3967. ]
  3968. },
  3969. "orientation": {
  3970. "type": "double",
  3971. "value": 0
  3972. },
  3973. "scale": {
  3974. "type": "list<double>",
  3975. "value": [
  3976. 1,
  3977. 1
  3978. ]
  3979. },
  3980. "mapper": {
  3981. "type": "code",
  3982. "value": ""
  3983. },
  3984. "parser": {
  3985. "type": "code",
  3986. "value": ""
  3987. },
  3988. "$contents": {
  3989. "type": "map<string,*>",
  3990. "value": {
  3991. "nodes": {},
  3992. "edges": []
  3993. }
  3994. },
  3995. "$asuri": {
  3996. "type": "string",
  3997. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/17.instance"
  3998. },
  3999. "$segments": {
  4000. "type": "map<string,list<string>>",
  4001. "value": {
  4002. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/9.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/17.instance": "M776,824L688,713",
  4003. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/17.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M687.9544976317155,712.9405792602404L603.000589240847,602.0007694792238"
  4004. }
  4005. },
  4006. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  4007. },
  4008. "18": {
  4009. "link-style": {
  4010. "type": "map<string,string>",
  4011. "value": {
  4012. "stroke": "#000000",
  4013. "stroke-dasharray": "- ",
  4014. "stroke-opacity": 1,
  4015. "stroke-width": 2,
  4016. "arrow-start": "none",
  4017. "arrow-end": "classic-wide-long"
  4018. }
  4019. },
  4020. "typename": {
  4021. "type": "string",
  4022. "value": "InheritanceLink"
  4023. },
  4024. "position": {
  4025. "type": "list<double>",
  4026. "value": [
  4027. 223.99899850809558,
  4028. 662.999
  4029. ]
  4030. },
  4031. "orientation": {
  4032. "type": "double",
  4033. "value": 0
  4034. },
  4035. "scale": {
  4036. "type": "list<double>",
  4037. "value": [
  4038. 1,
  4039. 1
  4040. ]
  4041. },
  4042. "mapper": {
  4043. "type": "code",
  4044. "value": ""
  4045. },
  4046. "parser": {
  4047. "type": "code",
  4048. "value": ""
  4049. },
  4050. "$contents": {
  4051. "type": "map<string,*>",
  4052. "value": {
  4053. "nodes": {},
  4054. "edges": []
  4055. }
  4056. },
  4057. "$asuri": {
  4058. "type": "string",
  4059. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/18.instance"
  4060. },
  4061. "$segments": {
  4062. "type": "map<string,list<string>>",
  4063. "value": {
  4064. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/1.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/18.instance": "M224,715L224,663",
  4065. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/18.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/0.instance": "M224,662.9236893447353L223.99999999999994,611.0002882766273"
  4066. }
  4067. },
  4068. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  4069. },
  4070. "19": {
  4071. "link-style": {
  4072. "type": "map<string,string>",
  4073. "value": {
  4074. "stroke": "#000000",
  4075. "stroke-dasharray": "",
  4076. "stroke-opacity": 1,
  4077. "stroke-width": 2,
  4078. "arrow-start": "none",
  4079. "arrow-end": "classic-wide-long"
  4080. }
  4081. },
  4082. "typename": {
  4083. "type": "string",
  4084. "value": "AssociationLink"
  4085. },
  4086. "position": {
  4087. "type": "list<double>",
  4088. "value": [
  4089. 373.5,
  4090. 546
  4091. ]
  4092. },
  4093. "orientation": {
  4094. "type": "double",
  4095. "value": 0
  4096. },
  4097. "scale": {
  4098. "type": "list<double>",
  4099. "value": [
  4100. 1,
  4101. 1
  4102. ]
  4103. },
  4104. "mapper": {
  4105. "type": "code",
  4106. "value": ""
  4107. },
  4108. "parser": {
  4109. "type": "code",
  4110. "value": ""
  4111. },
  4112. "$contents": {
  4113. "type": "map<string,*>",
  4114. "value": {
  4115. "nodes": {
  4116. "15": {
  4117. "textContent": {
  4118. "type": "string",
  4119. "value": "IconContents"
  4120. },
  4121. "style": {
  4122. "type": "map<string,string>",
  4123. "value": {
  4124. "stroke": "#000000",
  4125. "stroke-dasharray": "",
  4126. "fill": "#ffffff",
  4127. "fill-opacity": 0.75,
  4128. "font-size": "20px",
  4129. "stroke-width": 1,
  4130. "arrow-start": "none",
  4131. "arrow-end": "none"
  4132. }
  4133. },
  4134. "mapper": {
  4135. "type": "code",
  4136. "value": "({'textContent':getAttr('name')})"
  4137. },
  4138. "parser": {
  4139. "type": "code",
  4140. "value": "({'name':getAttr('textContent')})"
  4141. },
  4142. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4143. "position": {
  4144. "type": "list<double>",
  4145. "value": [
  4146. 1,
  4147. -19
  4148. ]
  4149. },
  4150. "orientation": {
  4151. "type": "double",
  4152. "value": 0
  4153. },
  4154. "scale": {
  4155. "type": "list<double>",
  4156. "value": [
  4157. 1,
  4158. 1
  4159. ]
  4160. }
  4161. }
  4162. },
  4163. "edges": []
  4164. }
  4165. },
  4166. "$asuri": {
  4167. "type": "string",
  4168. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association/19.instance"
  4169. },
  4170. "$segments": {
  4171. "type": "map<string,list<string>>",
  4172. "value": {
  4173. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/0.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/19.instance": "M326,557L411.5,557",
  4174. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/19.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M411.5,557L498,557"
  4175. }
  4176. },
  4177. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink"
  4178. },
  4179. "20": {
  4180. "link-style": {
  4181. "type": "map<string,string>",
  4182. "value": {
  4183. "stroke": "#000000",
  4184. "stroke-dasharray": "",
  4185. "stroke-opacity": 1,
  4186. "stroke-width": 2,
  4187. "arrow-start": "none",
  4188. "arrow-end": "classic-wide-long"
  4189. }
  4190. },
  4191. "typename": {
  4192. "type": "string",
  4193. "value": "AssociationLink"
  4194. },
  4195. "position": {
  4196. "type": "list<double>",
  4197. "value": [
  4198. "570.5,50%",
  4199. "361,50%"
  4200. ]
  4201. },
  4202. "orientation": {
  4203. "type": "double",
  4204. "value": 0
  4205. },
  4206. "scale": {
  4207. "type": "list<double>",
  4208. "value": [
  4209. 1,
  4210. 1
  4211. ]
  4212. },
  4213. "mapper": {
  4214. "type": "code",
  4215. "value": ""
  4216. },
  4217. "parser": {
  4218. "type": "code",
  4219. "value": ""
  4220. },
  4221. "$contents": {
  4222. "type": "map<string,*>",
  4223. "value": {
  4224. "nodes": {
  4225. "15": {
  4226. "textContent": {
  4227. "type": "string",
  4228. "value": "RightOf"
  4229. },
  4230. "style": {
  4231. "type": "map<string,string>",
  4232. "value": {
  4233. "stroke": "#000000",
  4234. "stroke-dasharray": "",
  4235. "fill": "#ffffff",
  4236. "fill-opacity": 0.75,
  4237. "font-size": "20px",
  4238. "stroke-width": 1,
  4239. "arrow-start": "none",
  4240. "arrow-end": "none"
  4241. }
  4242. },
  4243. "mapper": {
  4244. "type": "code",
  4245. "value": "({'textContent':getAttr('name')})"
  4246. },
  4247. "parser": {
  4248. "type": "code",
  4249. "value": "({'name':getAttr('textContent')})"
  4250. },
  4251. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4252. "position": {
  4253. "type": "list<double>",
  4254. "value": [
  4255. 1,
  4256. -19
  4257. ]
  4258. },
  4259. "orientation": {
  4260. "type": "double",
  4261. "value": 0
  4262. },
  4263. "scale": {
  4264. "type": "list<double>",
  4265. "value": [
  4266. 1,
  4267. 1
  4268. ]
  4269. }
  4270. }
  4271. },
  4272. "edges": []
  4273. }
  4274. },
  4275. "$asuri": {
  4276. "type": "string",
  4277. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association/20.instance"
  4278. },
  4279. "$segments": {
  4280. "type": "map<string,list<string>>",
  4281. "value": {
  4282. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/20.instance": "M581,475L581,361L570.5,361",
  4283. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/20.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M570.5,361L560,361L560,474.9997369959988"
  4284. }
  4285. },
  4286. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink"
  4287. },
  4288. "23": {
  4289. "link-style": {
  4290. "type": "map<string,string>",
  4291. "value": {
  4292. "stroke": "#000000",
  4293. "stroke-dasharray": "",
  4294. "stroke-opacity": 1,
  4295. "stroke-width": 2,
  4296. "arrow-start": "none",
  4297. "arrow-end": "classic-wide-long"
  4298. }
  4299. },
  4300. "typename": {
  4301. "type": "string",
  4302. "value": "AssociationLink"
  4303. },
  4304. "position": {
  4305. "type": "list<double>",
  4306. "value": [
  4307. "457.00000000000006,50%",
  4308. "410.52569547325106,50%"
  4309. ]
  4310. },
  4311. "orientation": {
  4312. "type": "double",
  4313. "value": 0
  4314. },
  4315. "scale": {
  4316. "type": "list<double>",
  4317. "value": [
  4318. 1,
  4319. 1
  4320. ]
  4321. },
  4322. "mapper": {
  4323. "type": "code",
  4324. "value": ""
  4325. },
  4326. "parser": {
  4327. "type": "code",
  4328. "value": ""
  4329. },
  4330. "$contents": {
  4331. "type": "map<string,*>",
  4332. "value": {
  4333. "nodes": {
  4334. "15": {
  4335. "textContent": {
  4336. "type": "string",
  4337. "value": "Below"
  4338. },
  4339. "style": {
  4340. "type": "map<string,string>",
  4341. "value": {
  4342. "stroke": "#000000",
  4343. "stroke-dasharray": "",
  4344. "fill": "#ffffff",
  4345. "fill-opacity": 0.75,
  4346. "font-size": "20px",
  4347. "stroke-width": 1,
  4348. "arrow-start": "none",
  4349. "arrow-end": "none"
  4350. }
  4351. },
  4352. "mapper": {
  4353. "type": "code",
  4354. "value": "({'textContent':getAttr('name')})"
  4355. },
  4356. "parser": {
  4357. "type": "code",
  4358. "value": "({'name':getAttr('textContent')})"
  4359. },
  4360. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4361. "position": {
  4362. "type": "list<double>",
  4363. "value": [
  4364. 1,
  4365. -19
  4366. ]
  4367. },
  4368. "orientation": {
  4369. "type": "double",
  4370. "value": 0
  4371. },
  4372. "scale": {
  4373. "type": "list<double>",
  4374. "value": [
  4375. 1,
  4376. 1
  4377. ]
  4378. }
  4379. }
  4380. },
  4381. "edges": []
  4382. }
  4383. },
  4384. "$asuri": {
  4385. "type": "string",
  4386. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association/23.instance"
  4387. },
  4388. "$segments": {
  4389. "type": "map<string,list<string>>",
  4390. "value": {
  4391. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/23.instance": "M509,475L509,409L457,409L457.00000000000006,410.52569547325106",
  4392. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/23.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M457.00000000000006,410.52569547325106L457,490L496.99925125,490"
  4393. }
  4394. },
  4395. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink"
  4396. },
  4397. "24": {
  4398. "link-style": {
  4399. "type": "map<string,string>",
  4400. "value": {
  4401. "stroke": "#000000",
  4402. "stroke-dasharray": "",
  4403. "stroke-opacity": 1,
  4404. "stroke-width": 2,
  4405. "arrow-start": "none",
  4406. "arrow-end": "classic-wide-long"
  4407. }
  4408. },
  4409. "typename": {
  4410. "type": "string",
  4411. "value": "AssociationLink"
  4412. },
  4413. "position": {
  4414. "type": "list<double>",
  4415. "value": [
  4416. "456.5453437499999,50%",
  4417. "671.9999999999999,50%"
  4418. ]
  4419. },
  4420. "orientation": {
  4421. "type": "double",
  4422. "value": 0
  4423. },
  4424. "scale": {
  4425. "type": "list<double>",
  4426. "value": [
  4427. 1,
  4428. 1
  4429. ]
  4430. },
  4431. "mapper": {
  4432. "type": "code",
  4433. "value": ""
  4434. },
  4435. "parser": {
  4436. "type": "code",
  4437. "value": ""
  4438. },
  4439. "$contents": {
  4440. "type": "map<string,*>",
  4441. "value": {
  4442. "nodes": {
  4443. "15": {
  4444. "textContent": {
  4445. "type": "string",
  4446. "value": "Span"
  4447. },
  4448. "style": {
  4449. "type": "map<string,string>",
  4450. "value": {
  4451. "stroke": "#000000",
  4452. "stroke-dasharray": "",
  4453. "fill": "#ffffff",
  4454. "fill-opacity": 0.75,
  4455. "font-size": "20px",
  4456. "stroke-width": 1,
  4457. "arrow-start": "none",
  4458. "arrow-end": "none"
  4459. }
  4460. },
  4461. "mapper": {
  4462. "type": "code",
  4463. "value": "({'textContent':getAttr('name')})"
  4464. },
  4465. "parser": {
  4466. "type": "code",
  4467. "value": "({'name':getAttr('textContent')})"
  4468. },
  4469. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4470. "position": {
  4471. "type": "list<double>",
  4472. "value": [
  4473. 1,
  4474. -19
  4475. ]
  4476. },
  4477. "orientation": {
  4478. "type": "double",
  4479. "value": 0
  4480. },
  4481. "scale": {
  4482. "type": "list<double>",
  4483. "value": [
  4484. 1,
  4485. 1
  4486. ]
  4487. }
  4488. }
  4489. },
  4490. "edges": []
  4491. }
  4492. },
  4493. "$asuri": {
  4494. "type": "string",
  4495. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association/24.instance"
  4496. },
  4497. "$segments": {
  4498. "type": "map<string,list<string>>",
  4499. "value": {
  4500. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/24.instance": "M496,590L451,590L451,672L456.5453437499999,671.9999999999999",
  4501. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/24.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M456.5453437499999,671.9999999999999L515,672L515,598.0004050401753"
  4502. }
  4503. },
  4504. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink"
  4505. },
  4506. "25": {
  4507. "link-style": {
  4508. "type": "map<string,string>",
  4509. "value": {
  4510. "stroke": "#000000",
  4511. "stroke-dasharray": "",
  4512. "stroke-opacity": 1,
  4513. "stroke-width": 2,
  4514. "arrow-start": "none",
  4515. "arrow-end": "classic-wide-long"
  4516. }
  4517. },
  4518. "typename": {
  4519. "type": "string",
  4520. "value": "AssociationLink"
  4521. },
  4522. "position": {
  4523. "type": "list<double>",
  4524. "value": [
  4525. "563.5998106508875,50%",
  4526. "701,50%"
  4527. ]
  4528. },
  4529. "orientation": {
  4530. "type": "double",
  4531. "value": 0
  4532. },
  4533. "scale": {
  4534. "type": "list<double>",
  4535. "value": [
  4536. 1,
  4537. 1
  4538. ]
  4539. },
  4540. "mapper": {
  4541. "type": "code",
  4542. "value": ""
  4543. },
  4544. "parser": {
  4545. "type": "code",
  4546. "value": ""
  4547. },
  4548. "$contents": {
  4549. "type": "map<string,*>",
  4550. "value": {
  4551. "nodes": {
  4552. "15": {
  4553. "textContent": {
  4554. "type": "string",
  4555. "value": "Contain"
  4556. },
  4557. "style": {
  4558. "type": "map<string,string>",
  4559. "value": {
  4560. "stroke": "#000000",
  4561. "stroke-dasharray": "",
  4562. "fill": "#ffffff",
  4563. "fill-opacity": 0.75,
  4564. "font-size": "20px",
  4565. "stroke-width": 1,
  4566. "arrow-start": "none",
  4567. "arrow-end": "none"
  4568. }
  4569. },
  4570. "mapper": {
  4571. "type": "code",
  4572. "value": "({'textContent':getAttr('name')})"
  4573. },
  4574. "parser": {
  4575. "type": "code",
  4576. "value": "({'name':getAttr('textContent')})"
  4577. },
  4578. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4579. "position": {
  4580. "type": "list<double>",
  4581. "value": [
  4582. 1,
  4583. -19
  4584. ]
  4585. },
  4586. "orientation": {
  4587. "type": "double",
  4588. "value": 0
  4589. },
  4590. "scale": {
  4591. "type": "list<double>",
  4592. "value": [
  4593. 1,
  4594. 1
  4595. ]
  4596. }
  4597. }
  4598. },
  4599. "edges": []
  4600. }
  4601. },
  4602. "$asuri": {
  4603. "type": "string",
  4604. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association/25.instance"
  4605. },
  4606. "$segments": {
  4607. "type": "map<string,list<string>>",
  4608. "value": {
  4609. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/25.instance": "M550,601L550,701L563.5998106508875,701",
  4610. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink/25.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M563.5998106508875,701L576,701L576,600.0002968336438"
  4611. }
  4612. },
  4613. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/AssociationLink"
  4614. },
  4615. "26": {
  4616. "typename": {
  4617. "type": "string",
  4618. "value": "ClassIcon"
  4619. },
  4620. "position": {
  4621. "type": "list<double>",
  4622. "value": [
  4623. 450,
  4624. 125
  4625. ]
  4626. },
  4627. "orientation": {
  4628. "type": "double",
  4629. "value": 0
  4630. },
  4631. "scale": {
  4632. "type": "list<double>",
  4633. "value": [
  4634. 1,
  4635. 1
  4636. ]
  4637. },
  4638. "mapper": {
  4639. "type": "code",
  4640. "value": ""
  4641. },
  4642. "parser": {
  4643. "type": "code",
  4644. "value": ""
  4645. },
  4646. "$contents": {
  4647. "type": "map<string,*>",
  4648. "value": {
  4649. "nodes": {
  4650. "5": {
  4651. "width": {
  4652. "type": "double",
  4653. "value": 200
  4654. },
  4655. "height": {
  4656. "type": "double",
  4657. "value": 125
  4658. },
  4659. "cornerRadius": {
  4660. "type": "double",
  4661. "value": 5
  4662. },
  4663. "style": {
  4664. "type": "map<string,string>",
  4665. "value": {
  4666. "stroke": "#000000",
  4667. "stroke-dasharray": "",
  4668. "fill": "#ffffff",
  4669. "fill-opacity": 0.75,
  4670. "stroke-width": 2
  4671. }
  4672. },
  4673. "mapper": {
  4674. "type": "code",
  4675. "value": ""
  4676. },
  4677. "parser": {
  4678. "type": "code",
  4679. "value": ""
  4680. },
  4681. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Rectangle",
  4682. "position": {
  4683. "type": "list<double>",
  4684. "value": [
  4685. 0,
  4686. 0
  4687. ]
  4688. },
  4689. "orientation": {
  4690. "type": "double",
  4691. "value": 0
  4692. },
  4693. "scale": {
  4694. "type": "list<double>",
  4695. "value": [
  4696. 1,
  4697. 1
  4698. ]
  4699. }
  4700. },
  4701. "6": {
  4702. "textContent": {
  4703. "type": "string",
  4704. "value": "Image"
  4705. },
  4706. "style": {
  4707. "type": "map<string,string>",
  4708. "value": {
  4709. "stroke": "#000000",
  4710. "fill": "#ffffff",
  4711. "fill-opacity": 0.75,
  4712. "font-size": "20px",
  4713. "font-style": "normal"
  4714. }
  4715. },
  4716. "mapper": {
  4717. "type": "code",
  4718. "value": "var style = \n {\n \"stroke\": \"#000000\",\n \"fill\": \"#ffffff\",\n \"fill-opacity\": 0.75,\n \"font-size\": \"20px\",\n \"font-style\": (getAttr('abstract') ? 'italic' : 'normal')\n };\n\n({'textContent': getAttr('name'), 'style':style})\n\n\n\n"
  4719. },
  4720. "parser": {
  4721. "type": "code",
  4722. "value": "({'name': getAttr('textContent')})"
  4723. },
  4724. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4725. "position": {
  4726. "type": "list<double>",
  4727. "value": [
  4728. 23,
  4729. 2
  4730. ]
  4731. },
  4732. "orientation": {
  4733. "type": "double",
  4734. "value": 0
  4735. },
  4736. "scale": {
  4737. "type": "list<double>",
  4738. "value": [
  4739. 1,
  4740. 1
  4741. ]
  4742. }
  4743. },
  4744. "7": {
  4745. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4746. "position": {
  4747. "type": "list<double>",
  4748. "value": [
  4749. 13.896110991026944,
  4750. 3.0451514439171206
  4751. ]
  4752. },
  4753. "orientation": {
  4754. "type": "double",
  4755. "value": 0
  4756. },
  4757. "scale": {
  4758. "type": "list<double>",
  4759. "value": [
  4760. 1,
  4761. 1
  4762. ]
  4763. },
  4764. "link-style": {
  4765. "type": "map<string,string>",
  4766. "value": {
  4767. "stroke": "#00ffff",
  4768. "stroke-dasharray": "",
  4769. "stroke-opacity": 0.1,
  4770. "arrow-start": "none",
  4771. "arrow-end": "classic-wide-long"
  4772. }
  4773. }
  4774. },
  4775. "17": {
  4776. "segments": {
  4777. "type": "string",
  4778. "value": "m0,0l200,0"
  4779. },
  4780. "style": {
  4781. "type": "map<string,string>",
  4782. "value": {
  4783. "stroke": "#000000",
  4784. "stroke-dasharray": "",
  4785. "fill": "#ffffff",
  4786. "fill-opacity": 0.75,
  4787. "font-size": "20px",
  4788. "stroke-width": 2,
  4789. "arrow-start": "none",
  4790. "arrow-end": "none"
  4791. }
  4792. },
  4793. "mapper": {
  4794. "type": "code",
  4795. "value": ""
  4796. },
  4797. "parser": {
  4798. "type": "code",
  4799. "value": ""
  4800. },
  4801. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Path",
  4802. "position": {
  4803. "type": "list<double>",
  4804. "value": [
  4805. 1,
  4806. 26
  4807. ]
  4808. },
  4809. "orientation": {
  4810. "type": "double",
  4811. "value": 0
  4812. },
  4813. "scale": {
  4814. "type": "list<double>",
  4815. "value": [
  4816. 1,
  4817. 1
  4818. ]
  4819. }
  4820. },
  4821. "18": {
  4822. "textContent": {
  4823. "type": "string",
  4824. "value": "src\nwidth\nheight"
  4825. },
  4826. "style": {
  4827. "type": "map<string,string>",
  4828. "value": {
  4829. "stroke": "#000000",
  4830. "stroke-dasharray": "",
  4831. "fill": "#ffffff",
  4832. "fill-opacity": 0.75,
  4833. "font-size": "13px",
  4834. "stroke-width": 1,
  4835. "arrow-start": "none",
  4836. "arrow-end": "none"
  4837. }
  4838. },
  4839. "mapper": {
  4840. "type": "code",
  4841. "value": "var filenames = getAttr('attributes').map(\n\t\t\t\tfunction(attr)\n\t\t\t\t{\n\t\t\t\t\treturn attr['name'];\n\t\t\t\t});\n({'textContent': filenames.join('\\n')})"
  4842. },
  4843. "parser": {
  4844. "type": "code",
  4845. "value": ""
  4846. },
  4847. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Text",
  4848. "position": {
  4849. "type": "list<double>",
  4850. "value": [
  4851. 3,
  4852. 25
  4853. ]
  4854. },
  4855. "orientation": {
  4856. "type": "double",
  4857. "value": 0
  4858. },
  4859. "scale": {
  4860. "type": "list<double>",
  4861. "value": [
  4862. 1,
  4863. 1
  4864. ]
  4865. }
  4866. },
  4867. "19": {
  4868. "width": {
  4869. "type": "boolean",
  4870. "value": true
  4871. },
  4872. "ratio": {
  4873. "type": "double",
  4874. "value": 1
  4875. },
  4876. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Span",
  4877. "position": {
  4878. "type": "list<double>",
  4879. "value": [
  4880. 168.09129891774523,
  4881. 30.625911571363645
  4882. ]
  4883. },
  4884. "orientation": {
  4885. "type": "double",
  4886. "value": 0
  4887. },
  4888. "scale": {
  4889. "type": "list<double>",
  4890. "value": [
  4891. 1,
  4892. 1
  4893. ]
  4894. },
  4895. "link-style": {
  4896. "type": "map<string,string>",
  4897. "value": {
  4898. "stroke": "#0000ff",
  4899. "stroke-dasharray": "",
  4900. "stroke-opacity": 1,
  4901. "arrow-start": "none",
  4902. "arrow-end": "classic-wide-long"
  4903. }
  4904. }
  4905. },
  4906. "20": {
  4907. "$type": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/ConcreteSyntax/Contain",
  4908. "position": {
  4909. "type": "list<double>",
  4910. "value": [
  4911. 6.49899850809561,
  4912. 18.998998508095553
  4913. ]
  4914. },
  4915. "orientation": {
  4916. "type": "double",
  4917. "value": 0
  4918. },
  4919. "scale": {
  4920. "type": "list<double>",
  4921. "value": [
  4922. 1,
  4923. 1
  4924. ]
  4925. },
  4926. "link-style": {
  4927. "type": "map<string,string>",
  4928. "value": {
  4929. "stroke": "#00ffff",
  4930. "stroke-dasharray": "",
  4931. "stroke-opacity": 0.1,
  4932. "arrow-start": "none",
  4933. "arrow-end": "classic-wide-long"
  4934. }
  4935. }
  4936. }
  4937. },
  4938. "edges": [
  4939. {
  4940. "src": "5",
  4941. "dest": "7"
  4942. },
  4943. {
  4944. "src": "7",
  4945. "dest": "6"
  4946. },
  4947. {
  4948. "src": "17",
  4949. "dest": "19"
  4950. },
  4951. {
  4952. "src": "19",
  4953. "dest": "5"
  4954. },
  4955. {
  4956. "src": "5",
  4957. "dest": "20"
  4958. },
  4959. {
  4960. "src": "20",
  4961. "dest": "18"
  4962. }
  4963. ]
  4964. }
  4965. },
  4966. "$asuri": {
  4967. "type": "string",
  4968. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class/26.instance"
  4969. },
  4970. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon"
  4971. },
  4972. "27": {
  4973. "link-style": {
  4974. "type": "map<string,string>",
  4975. "value": {
  4976. "stroke": "#000000",
  4977. "stroke-dasharray": "- ",
  4978. "stroke-opacity": 1,
  4979. "stroke-width": 2,
  4980. "arrow-start": "none",
  4981. "arrow-end": "classic-wide-long"
  4982. }
  4983. },
  4984. "typename": {
  4985. "type": "string",
  4986. "value": "InheritanceLink"
  4987. },
  4988. "position": {
  4989. "type": "list<double>",
  4990. "value": [
  4991. "646.8449822367746,50%",
  4992. "366.3310358494186,50%"
  4993. ]
  4994. },
  4995. "orientation": {
  4996. "type": "double",
  4997. "value": 0
  4998. },
  4999. "scale": {
  5000. "type": "list<double>",
  5001. "value": [
  5002. 1,
  5003. 1
  5004. ]
  5005. },
  5006. "mapper": {
  5007. "type": "code",
  5008. "value": ""
  5009. },
  5010. "parser": {
  5011. "type": "code",
  5012. "value": ""
  5013. },
  5014. "$contents": {
  5015. "type": "map<string,*>",
  5016. "value": {
  5017. "nodes": {},
  5018. "edges": []
  5019. }
  5020. },
  5021. "$asuri": {
  5022. "type": "string",
  5023. "value": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance/27.instance"
  5024. },
  5025. "$segments": {
  5026. "type": "map<string,list<string>>",
  5027. "value": {
  5028. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/26.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/27.instance": "M615,250L648,364L646.8449822367746,366.3310358494186",
  5029. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink/27.instance--/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/ClassIcon/2.instance": "M646.8274681128496,366.3663825358851L593.000435775367,474.9991205260773"
  5030. }
  5031. },
  5032. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons/InheritanceLink"
  5033. }
  5034. },
  5035. "edges": [],
  5036. "metamodels": [
  5037. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram.defaultIcons"
  5038. ]
  5039. },
  5040. "asm": {
  5041. "nodes": {
  5042. "0": {
  5043. "name": {
  5044. "type": "string",
  5045. "value": "Icon"
  5046. },
  5047. "attributes": {
  5048. "type": "list<$ATTRIBUTE>",
  5049. "value": [
  5050. {
  5051. "name": "typename",
  5052. "type": "string",
  5053. "default": ""
  5054. },
  5055. {
  5056. "name": "position",
  5057. "type": "list<double>",
  5058. "default": [
  5059. 0,
  5060. 0
  5061. ]
  5062. },
  5063. {
  5064. "name": "orientation",
  5065. "type": "double",
  5066. "default": 0
  5067. },
  5068. {
  5069. "name": "scale",
  5070. "type": "list<double>",
  5071. "default": [
  5072. 1,
  5073. 1
  5074. ]
  5075. },
  5076. {
  5077. "name": "mapper",
  5078. "type": "code",
  5079. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5080. },
  5081. {
  5082. "name": "parser",
  5083. "type": "code",
  5084. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5085. }
  5086. ]
  5087. },
  5088. "constraints": {
  5089. "type": "list<$EVENT_HANDLER>",
  5090. "value": [
  5091. {
  5092. "name": "noIconOrLinkRotation",
  5093. "event": "post-edit",
  5094. "code": "getAttr('orientation') == 0"
  5095. }
  5096. ]
  5097. },
  5098. "actions": {
  5099. "type": "list<$EVENT_HANDLER>",
  5100. "value": []
  5101. },
  5102. "cardinalities": {
  5103. "type": "list<$CARDINALITY>",
  5104. "value": []
  5105. },
  5106. "abstract": {
  5107. "type": "boolean",
  5108. "value": false
  5109. },
  5110. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5111. },
  5112. "1": {
  5113. "name": {
  5114. "type": "string",
  5115. "value": "Link"
  5116. },
  5117. "attributes": {
  5118. "type": "list<$ATTRIBUTE>",
  5119. "value": [
  5120. {
  5121. "name": "link-style",
  5122. "type": "map<string,string>",
  5123. "default": {
  5124. "stroke": "#000000",
  5125. "stroke-dasharray": "",
  5126. "stroke-opacity": 1,
  5127. "stroke-width": 2
  5128. }
  5129. },
  5130. {
  5131. "name": "arrowHead",
  5132. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  5133. "default": "custom"
  5134. },
  5135. {
  5136. "name": "arrowTail",
  5137. "type": "ENUM(circle-black,circle-black-large,circle-white,circle-white-large,diamond-black,diamond-black-large,diamond-white,diamond-white-large,triangle-black,triangle-black-large,triangle-white,triangle-white-large,arrow-black,arrow-black-large,arrow-empty,arrow-empty-large,custom)",
  5138. "default": "arrow-black"
  5139. }
  5140. ]
  5141. },
  5142. "constraints": {
  5143. "type": "list<$EVENT_HANDLER>",
  5144. "value": []
  5145. },
  5146. "actions": {
  5147. "type": "list<$EVENT_HANDLER>",
  5148. "value": []
  5149. },
  5150. "cardinalities": {
  5151. "type": "list<$CARDINALITY>",
  5152. "value": []
  5153. },
  5154. "abstract": {
  5155. "type": "boolean",
  5156. "value": false
  5157. },
  5158. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5159. },
  5160. "2": {
  5161. "name": {
  5162. "type": "string",
  5163. "value": "VisualObject"
  5164. },
  5165. "attributes": {
  5166. "type": "list<$ATTRIBUTE>",
  5167. "value": [
  5168. {
  5169. "name": "style",
  5170. "type": "map<string,string>",
  5171. "default": {
  5172. "stroke": "#000000",
  5173. "stroke-dasharray": "",
  5174. "fill": "#ffffff",
  5175. "fill-opacity": 1,
  5176. "font-size": "20px",
  5177. "stroke-width": 1,
  5178. "arrow-start": "none",
  5179. "arrow-end": "none"
  5180. }
  5181. },
  5182. {
  5183. "name": "mapper",
  5184. "type": "code",
  5185. "default": "/* specify code that evaluates to an associative array of the form {...,csattr:val,...} */"
  5186. },
  5187. {
  5188. "name": "parser",
  5189. "type": "code",
  5190. "default": "/* specify code that evaluates to an associative array of the form {...,attr:val,...} */"
  5191. }
  5192. ]
  5193. },
  5194. "constraints": {
  5195. "type": "list<$EVENT_HANDLER>",
  5196. "value": []
  5197. },
  5198. "actions": {
  5199. "type": "list<$EVENT_HANDLER>",
  5200. "value": []
  5201. },
  5202. "cardinalities": {
  5203. "type": "list<$CARDINALITY>",
  5204. "value": []
  5205. },
  5206. "abstract": {
  5207. "type": "boolean",
  5208. "value": true
  5209. },
  5210. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5211. },
  5212. "3": {
  5213. "name": {
  5214. "type": "string",
  5215. "value": "Rectangle"
  5216. },
  5217. "attributes": {
  5218. "type": "list<$ATTRIBUTE>",
  5219. "value": [
  5220. {
  5221. "name": "width",
  5222. "type": "double",
  5223. "default": 100
  5224. },
  5225. {
  5226. "name": "height",
  5227. "type": "double",
  5228. "default": 100
  5229. },
  5230. {
  5231. "name": "cornerRadius",
  5232. "type": "double",
  5233. "default": 5
  5234. }
  5235. ]
  5236. },
  5237. "constraints": {
  5238. "type": "list<$EVENT_HANDLER>",
  5239. "value": []
  5240. },
  5241. "actions": {
  5242. "type": "list<$EVENT_HANDLER>",
  5243. "value": []
  5244. },
  5245. "cardinalities": {
  5246. "type": "list<$CARDINALITY>",
  5247. "value": []
  5248. },
  5249. "abstract": {
  5250. "type": "boolean",
  5251. "value": false
  5252. },
  5253. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5254. },
  5255. "4": {
  5256. "name": {
  5257. "type": "string",
  5258. "value": "Circle"
  5259. },
  5260. "attributes": {
  5261. "type": "list<$ATTRIBUTE>",
  5262. "value": [
  5263. {
  5264. "name": "r",
  5265. "type": "double",
  5266. "default": 50
  5267. }
  5268. ]
  5269. },
  5270. "constraints": {
  5271. "type": "list<$EVENT_HANDLER>",
  5272. "value": []
  5273. },
  5274. "actions": {
  5275. "type": "list<$EVENT_HANDLER>",
  5276. "value": []
  5277. },
  5278. "cardinalities": {
  5279. "type": "list<$CARDINALITY>",
  5280. "value": []
  5281. },
  5282. "abstract": {
  5283. "type": "boolean",
  5284. "value": false
  5285. },
  5286. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5287. },
  5288. "5": {
  5289. "name": {
  5290. "type": "string",
  5291. "value": "Ellipse"
  5292. },
  5293. "attributes": {
  5294. "type": "list<$ATTRIBUTE>",
  5295. "value": [
  5296. {
  5297. "name": "rx",
  5298. "type": "double",
  5299. "default": 50
  5300. },
  5301. {
  5302. "name": "ry",
  5303. "type": "double",
  5304. "default": 30
  5305. }
  5306. ]
  5307. },
  5308. "constraints": {
  5309. "type": "list<$EVENT_HANDLER>",
  5310. "value": []
  5311. },
  5312. "actions": {
  5313. "type": "list<$EVENT_HANDLER>",
  5314. "value": []
  5315. },
  5316. "cardinalities": {
  5317. "type": "list<$CARDINALITY>",
  5318. "value": []
  5319. },
  5320. "abstract": {
  5321. "type": "boolean",
  5322. "value": false
  5323. },
  5324. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5325. },
  5326. "6": {
  5327. "name": {
  5328. "type": "string",
  5329. "value": "Polygon"
  5330. },
  5331. "attributes": {
  5332. "type": "list<$ATTRIBUTE>",
  5333. "value": [
  5334. {
  5335. "name": "r",
  5336. "type": "double",
  5337. "default": 50
  5338. },
  5339. {
  5340. "name": "sides",
  5341. "type": "int",
  5342. "default": 5
  5343. }
  5344. ]
  5345. },
  5346. "constraints": {
  5347. "type": "list<$EVENT_HANDLER>",
  5348. "value": []
  5349. },
  5350. "actions": {
  5351. "type": "list<$EVENT_HANDLER>",
  5352. "value": []
  5353. },
  5354. "cardinalities": {
  5355. "type": "list<$CARDINALITY>",
  5356. "value": []
  5357. },
  5358. "abstract": {
  5359. "type": "boolean",
  5360. "value": false
  5361. },
  5362. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5363. },
  5364. "7": {
  5365. "name": {
  5366. "type": "string",
  5367. "value": "Star"
  5368. },
  5369. "attributes": {
  5370. "type": "list<$ATTRIBUTE>",
  5371. "value": [
  5372. {
  5373. "name": "r",
  5374. "type": "double",
  5375. "default": 50
  5376. },
  5377. {
  5378. "name": "rays",
  5379. "type": "int",
  5380. "default": 5
  5381. }
  5382. ]
  5383. },
  5384. "constraints": {
  5385. "type": "list<$EVENT_HANDLER>",
  5386. "value": []
  5387. },
  5388. "actions": {
  5389. "type": "list<$EVENT_HANDLER>",
  5390. "value": []
  5391. },
  5392. "cardinalities": {
  5393. "type": "list<$CARDINALITY>",
  5394. "value": []
  5395. },
  5396. "abstract": {
  5397. "type": "boolean",
  5398. "value": false
  5399. },
  5400. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5401. },
  5402. "8": {
  5403. "name": {
  5404. "type": "string",
  5405. "value": "Text"
  5406. },
  5407. "attributes": {
  5408. "type": "list<$ATTRIBUTE>",
  5409. "value": [
  5410. {
  5411. "name": "textContent",
  5412. "type": "string",
  5413. "default": "T..."
  5414. },
  5415. {
  5416. "name": "style",
  5417. "type": "map<string,string>",
  5418. "default": {
  5419. "stroke": "#000000",
  5420. "stroke-dasharray": "",
  5421. "fill": "#000000",
  5422. "fill-opacity": 1,
  5423. "font-size": "20px",
  5424. "stroke-width": 1,
  5425. "arrow-start": "none",
  5426. "arrow-end": "none"
  5427. }
  5428. }
  5429. ]
  5430. },
  5431. "constraints": {
  5432. "type": "list<$EVENT_HANDLER>",
  5433. "value": []
  5434. },
  5435. "actions": {
  5436. "type": "list<$EVENT_HANDLER>",
  5437. "value": []
  5438. },
  5439. "cardinalities": {
  5440. "type": "list<$CARDINALITY>",
  5441. "value": []
  5442. },
  5443. "abstract": {
  5444. "type": "boolean",
  5445. "value": false
  5446. },
  5447. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5448. },
  5449. "9": {
  5450. "name": {
  5451. "type": "string",
  5452. "value": "Path"
  5453. },
  5454. "attributes": {
  5455. "type": "list<$ATTRIBUTE>",
  5456. "value": [
  5457. {
  5458. "name": "segments",
  5459. "type": "string",
  5460. "default": "m0,0l100,0"
  5461. }
  5462. ]
  5463. },
  5464. "constraints": {
  5465. "type": "list<$EVENT_HANDLER>",
  5466. "value": []
  5467. },
  5468. "actions": {
  5469. "type": "list<$EVENT_HANDLER>",
  5470. "value": []
  5471. },
  5472. "cardinalities": {
  5473. "type": "list<$CARDINALITY>",
  5474. "value": []
  5475. },
  5476. "abstract": {
  5477. "type": "boolean",
  5478. "value": false
  5479. },
  5480. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5481. },
  5482. "10": {
  5483. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5484. },
  5485. "11": {
  5486. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5487. },
  5488. "12": {
  5489. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5490. },
  5491. "13": {
  5492. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5493. },
  5494. "14": {
  5495. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5496. },
  5497. "16": {
  5498. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5499. },
  5500. "17": {
  5501. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5502. },
  5503. "18": {
  5504. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5505. },
  5506. "19": {
  5507. "name": {
  5508. "type": "string",
  5509. "value": "IconContents"
  5510. },
  5511. "attributes": {
  5512. "type": "list<$ATTRIBUTE>",
  5513. "value": []
  5514. },
  5515. "constraints": {
  5516. "type": "list<$EVENT_HANDLER>",
  5517. "value": []
  5518. },
  5519. "actions": {
  5520. "type": "list<$EVENT_HANDLER>",
  5521. "value": []
  5522. },
  5523. "cardinalities": {
  5524. "type": "list<$CARDINALITY>",
  5525. "value": []
  5526. },
  5527. "linktype": {
  5528. "type": "ENUM(visual,containment)",
  5529. "value": "containment"
  5530. },
  5531. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5532. },
  5533. "20": {
  5534. "name": {
  5535. "type": "string",
  5536. "value": "RightOf"
  5537. },
  5538. "attributes": {
  5539. "type": "list<$ATTRIBUTE>",
  5540. "value": [
  5541. {
  5542. "name": "distance",
  5543. "type": "double",
  5544. "default": 0
  5545. },
  5546. {
  5547. "name": "alignment",
  5548. "type": "ENUM('top','bottom','center')",
  5549. "default": "center"
  5550. }
  5551. ]
  5552. },
  5553. "constraints": {
  5554. "type": "list<$EVENT_HANDLER>",
  5555. "value": []
  5556. },
  5557. "actions": {
  5558. "type": "list<$EVENT_HANDLER>",
  5559. "value": []
  5560. },
  5561. "cardinalities": {
  5562. "type": "list<$CARDINALITY>",
  5563. "value": []
  5564. },
  5565. "linktype": {
  5566. "type": "ENUM(visual,containment)",
  5567. "value": "visual"
  5568. },
  5569. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5570. },
  5571. "23": {
  5572. "name": {
  5573. "type": "string",
  5574. "value": "Below"
  5575. },
  5576. "attributes": {
  5577. "type": "list<$ATTRIBUTE>",
  5578. "value": [
  5579. {
  5580. "name": "distance",
  5581. "type": "double",
  5582. "default": 0
  5583. },
  5584. {
  5585. "name": "alignment",
  5586. "type": "ENUM('right','left','center')",
  5587. "default": "center"
  5588. }
  5589. ]
  5590. },
  5591. "constraints": {
  5592. "type": "list<$EVENT_HANDLER>",
  5593. "value": []
  5594. },
  5595. "actions": {
  5596. "type": "list<$EVENT_HANDLER>",
  5597. "value": []
  5598. },
  5599. "cardinalities": {
  5600. "type": "list<$CARDINALITY>",
  5601. "value": []
  5602. },
  5603. "linktype": {
  5604. "type": "ENUM(visual,containment)",
  5605. "value": "visual"
  5606. },
  5607. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5608. },
  5609. "24": {
  5610. "name": {
  5611. "type": "string",
  5612. "value": "Span"
  5613. },
  5614. "attributes": {
  5615. "type": "list<$ATTRIBUTE>",
  5616. "value": [
  5617. {
  5618. "name": "width",
  5619. "type": "boolean",
  5620. "default": true
  5621. },
  5622. {
  5623. "name": "ratio",
  5624. "type": "double",
  5625. "default": 1
  5626. }
  5627. ]
  5628. },
  5629. "constraints": {
  5630. "type": "list<$EVENT_HANDLER>",
  5631. "value": [
  5632. {
  5633. "name": "validRatio",
  5634. "event": "post-update",
  5635. "code": "getAttr('ratio') > 0 && getAttr('ratio') <= 1;"
  5636. }
  5637. ]
  5638. },
  5639. "actions": {
  5640. "type": "list<$EVENT_HANDLER>",
  5641. "value": []
  5642. },
  5643. "cardinalities": {
  5644. "type": "list<$CARDINALITY>",
  5645. "value": []
  5646. },
  5647. "linktype": {
  5648. "type": "ENUM(visual,containment)",
  5649. "value": "visual"
  5650. },
  5651. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5652. },
  5653. "25": {
  5654. "name": {
  5655. "type": "string",
  5656. "value": "Contain"
  5657. },
  5658. "attributes": {
  5659. "type": "list<$ATTRIBUTE>",
  5660. "value": []
  5661. },
  5662. "constraints": {
  5663. "type": "list<$EVENT_HANDLER>",
  5664. "value": []
  5665. },
  5666. "actions": {
  5667. "type": "list<$EVENT_HANDLER>",
  5668. "value": []
  5669. },
  5670. "cardinalities": {
  5671. "type": "list<$CARDINALITY>",
  5672. "value": []
  5673. },
  5674. "linktype": {
  5675. "type": "ENUM(visual,containment)",
  5676. "value": "containment"
  5677. },
  5678. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5679. },
  5680. "26": {
  5681. "name": {
  5682. "type": "string",
  5683. "value": "Image"
  5684. },
  5685. "attributes": {
  5686. "type": "list<$ATTRIBUTE>",
  5687. "value": [
  5688. {
  5689. "name": "src",
  5690. "type": "string",
  5691. "default": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/defaultImage.png"
  5692. },
  5693. {
  5694. "name": "width",
  5695. "type": "double",
  5696. "default": 48
  5697. },
  5698. {
  5699. "name": "height",
  5700. "type": "double",
  5701. "default": 48
  5702. }
  5703. ]
  5704. },
  5705. "constraints": {
  5706. "type": "list<$EVENT_HANDLER>",
  5707. "value": []
  5708. },
  5709. "actions": {
  5710. "type": "list<$EVENT_HANDLER>",
  5711. "value": []
  5712. },
  5713. "cardinalities": {
  5714. "type": "list<$CARDINALITY>",
  5715. "value": []
  5716. },
  5717. "abstract": {
  5718. "type": "boolean",
  5719. "value": false
  5720. },
  5721. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5722. },
  5723. "27": {
  5724. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5725. }
  5726. },
  5727. "edges": [
  5728. {
  5729. "src": "3",
  5730. "dest": "10"
  5731. },
  5732. {
  5733. "src": "10",
  5734. "dest": "2"
  5735. },
  5736. {
  5737. "src": "4",
  5738. "dest": "11"
  5739. },
  5740. {
  5741. "src": "11",
  5742. "dest": "2"
  5743. },
  5744. {
  5745. "src": "5",
  5746. "dest": "12"
  5747. },
  5748. {
  5749. "src": "12",
  5750. "dest": "2"
  5751. },
  5752. {
  5753. "src": "6",
  5754. "dest": "13"
  5755. },
  5756. {
  5757. "src": "13",
  5758. "dest": "2"
  5759. },
  5760. {
  5761. "src": "7",
  5762. "dest": "14"
  5763. },
  5764. {
  5765. "src": "14",
  5766. "dest": "2"
  5767. },
  5768. {
  5769. "src": "8",
  5770. "dest": "16"
  5771. },
  5772. {
  5773. "src": "16",
  5774. "dest": "2"
  5775. },
  5776. {
  5777. "src": "9",
  5778. "dest": "17"
  5779. },
  5780. {
  5781. "src": "17",
  5782. "dest": "2"
  5783. },
  5784. {
  5785. "src": "1",
  5786. "dest": "18"
  5787. },
  5788. {
  5789. "src": "18",
  5790. "dest": "0"
  5791. },
  5792. {
  5793. "src": "0",
  5794. "dest": "19"
  5795. },
  5796. {
  5797. "src": "19",
  5798. "dest": "2"
  5799. },
  5800. {
  5801. "src": "2",
  5802. "dest": "20"
  5803. },
  5804. {
  5805. "src": "20",
  5806. "dest": "2"
  5807. },
  5808. {
  5809. "src": "2",
  5810. "dest": "23"
  5811. },
  5812. {
  5813. "src": "23",
  5814. "dest": "2"
  5815. },
  5816. {
  5817. "src": "2",
  5818. "dest": "24"
  5819. },
  5820. {
  5821. "src": "24",
  5822. "dest": "2"
  5823. },
  5824. {
  5825. "src": "2",
  5826. "dest": "25"
  5827. },
  5828. {
  5829. "src": "25",
  5830. "dest": "2"
  5831. },
  5832. {
  5833. "src": "26",
  5834. "dest": "27"
  5835. },
  5836. {
  5837. "src": "27",
  5838. "dest": "2"
  5839. }
  5840. ],
  5841. "metamodels": [
  5842. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram"
  5843. ]
  5844. }
  5845. }