ConcreteSyntaxMM.model 134 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831
  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"
  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": 0.75,
  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. },
  5417. "constraints": {
  5418. "type": "list<$EVENT_HANDLER>",
  5419. "value": []
  5420. },
  5421. "actions": {
  5422. "type": "list<$EVENT_HANDLER>",
  5423. "value": []
  5424. },
  5425. "cardinalities": {
  5426. "type": "list<$CARDINALITY>",
  5427. "value": []
  5428. },
  5429. "abstract": {
  5430. "type": "boolean",
  5431. "value": false
  5432. },
  5433. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5434. },
  5435. "9": {
  5436. "name": {
  5437. "type": "string",
  5438. "value": "Path"
  5439. },
  5440. "attributes": {
  5441. "type": "list<$ATTRIBUTE>",
  5442. "value": [
  5443. {
  5444. "name": "segments",
  5445. "type": "string",
  5446. "default": "m0,0l100,0"
  5447. }
  5448. ]
  5449. },
  5450. "constraints": {
  5451. "type": "list<$EVENT_HANDLER>",
  5452. "value": []
  5453. },
  5454. "actions": {
  5455. "type": "list<$EVENT_HANDLER>",
  5456. "value": []
  5457. },
  5458. "cardinalities": {
  5459. "type": "list<$CARDINALITY>",
  5460. "value": []
  5461. },
  5462. "abstract": {
  5463. "type": "boolean",
  5464. "value": false
  5465. },
  5466. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5467. },
  5468. "10": {
  5469. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5470. },
  5471. "11": {
  5472. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5473. },
  5474. "12": {
  5475. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5476. },
  5477. "13": {
  5478. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5479. },
  5480. "14": {
  5481. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5482. },
  5483. "16": {
  5484. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5485. },
  5486. "17": {
  5487. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5488. },
  5489. "18": {
  5490. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5491. },
  5492. "19": {
  5493. "name": {
  5494. "type": "string",
  5495. "value": "IconContents"
  5496. },
  5497. "attributes": {
  5498. "type": "list<$ATTRIBUTE>",
  5499. "value": []
  5500. },
  5501. "constraints": {
  5502. "type": "list<$EVENT_HANDLER>",
  5503. "value": []
  5504. },
  5505. "actions": {
  5506. "type": "list<$EVENT_HANDLER>",
  5507. "value": []
  5508. },
  5509. "cardinalities": {
  5510. "type": "list<$CARDINALITY>",
  5511. "value": []
  5512. },
  5513. "linktype": {
  5514. "type": "ENUM(visual,containment)",
  5515. "value": "containment"
  5516. },
  5517. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5518. },
  5519. "20": {
  5520. "name": {
  5521. "type": "string",
  5522. "value": "RightOf"
  5523. },
  5524. "attributes": {
  5525. "type": "list<$ATTRIBUTE>",
  5526. "value": [
  5527. {
  5528. "name": "distance",
  5529. "type": "double",
  5530. "default": 0
  5531. },
  5532. {
  5533. "name": "alignment",
  5534. "type": "ENUM('top','bottom','center')",
  5535. "default": "center"
  5536. }
  5537. ]
  5538. },
  5539. "constraints": {
  5540. "type": "list<$EVENT_HANDLER>",
  5541. "value": []
  5542. },
  5543. "actions": {
  5544. "type": "list<$EVENT_HANDLER>",
  5545. "value": []
  5546. },
  5547. "cardinalities": {
  5548. "type": "list<$CARDINALITY>",
  5549. "value": []
  5550. },
  5551. "linktype": {
  5552. "type": "ENUM(visual,containment)",
  5553. "value": "visual"
  5554. },
  5555. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5556. },
  5557. "23": {
  5558. "name": {
  5559. "type": "string",
  5560. "value": "Below"
  5561. },
  5562. "attributes": {
  5563. "type": "list<$ATTRIBUTE>",
  5564. "value": [
  5565. {
  5566. "name": "distance",
  5567. "type": "double",
  5568. "default": 0
  5569. },
  5570. {
  5571. "name": "alignment",
  5572. "type": "ENUM('right','left','center')",
  5573. "default": "center"
  5574. }
  5575. ]
  5576. },
  5577. "constraints": {
  5578. "type": "list<$EVENT_HANDLER>",
  5579. "value": []
  5580. },
  5581. "actions": {
  5582. "type": "list<$EVENT_HANDLER>",
  5583. "value": []
  5584. },
  5585. "cardinalities": {
  5586. "type": "list<$CARDINALITY>",
  5587. "value": []
  5588. },
  5589. "linktype": {
  5590. "type": "ENUM(visual,containment)",
  5591. "value": "visual"
  5592. },
  5593. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5594. },
  5595. "24": {
  5596. "name": {
  5597. "type": "string",
  5598. "value": "Span"
  5599. },
  5600. "attributes": {
  5601. "type": "list<$ATTRIBUTE>",
  5602. "value": [
  5603. {
  5604. "name": "width",
  5605. "type": "boolean",
  5606. "default": true
  5607. },
  5608. {
  5609. "name": "ratio",
  5610. "type": "double",
  5611. "default": 1
  5612. }
  5613. ]
  5614. },
  5615. "constraints": {
  5616. "type": "list<$EVENT_HANDLER>",
  5617. "value": [
  5618. {
  5619. "name": "validRatio",
  5620. "event": "post-update",
  5621. "code": "getAttr('ratio') > 0 && getAttr('ratio') <= 1;"
  5622. }
  5623. ]
  5624. },
  5625. "actions": {
  5626. "type": "list<$EVENT_HANDLER>",
  5627. "value": []
  5628. },
  5629. "cardinalities": {
  5630. "type": "list<$CARDINALITY>",
  5631. "value": []
  5632. },
  5633. "linktype": {
  5634. "type": "ENUM(visual,containment)",
  5635. "value": "visual"
  5636. },
  5637. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5638. },
  5639. "25": {
  5640. "name": {
  5641. "type": "string",
  5642. "value": "Contain"
  5643. },
  5644. "attributes": {
  5645. "type": "list<$ATTRIBUTE>",
  5646. "value": []
  5647. },
  5648. "constraints": {
  5649. "type": "list<$EVENT_HANDLER>",
  5650. "value": []
  5651. },
  5652. "actions": {
  5653. "type": "list<$EVENT_HANDLER>",
  5654. "value": []
  5655. },
  5656. "cardinalities": {
  5657. "type": "list<$CARDINALITY>",
  5658. "value": []
  5659. },
  5660. "linktype": {
  5661. "type": "ENUM(visual,containment)",
  5662. "value": "containment"
  5663. },
  5664. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Association"
  5665. },
  5666. "26": {
  5667. "name": {
  5668. "type": "string",
  5669. "value": "Image"
  5670. },
  5671. "attributes": {
  5672. "type": "list<$ATTRIBUTE>",
  5673. "value": [
  5674. {
  5675. "name": "src",
  5676. "type": "string",
  5677. "default": "/Formalisms/__LanguageSyntax__/ConcreteSyntax/defaultImage.png"
  5678. },
  5679. {
  5680. "name": "width",
  5681. "type": "double",
  5682. "default": 48
  5683. },
  5684. {
  5685. "name": "height",
  5686. "type": "double",
  5687. "default": 48
  5688. }
  5689. ]
  5690. },
  5691. "constraints": {
  5692. "type": "list<$EVENT_HANDLER>",
  5693. "value": []
  5694. },
  5695. "actions": {
  5696. "type": "list<$EVENT_HANDLER>",
  5697. "value": []
  5698. },
  5699. "cardinalities": {
  5700. "type": "list<$CARDINALITY>",
  5701. "value": []
  5702. },
  5703. "abstract": {
  5704. "type": "boolean",
  5705. "value": false
  5706. },
  5707. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Class"
  5708. },
  5709. "27": {
  5710. "$type": "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram/Inheritance"
  5711. }
  5712. },
  5713. "edges": [
  5714. {
  5715. "src": "3",
  5716. "dest": "10"
  5717. },
  5718. {
  5719. "src": "10",
  5720. "dest": "2"
  5721. },
  5722. {
  5723. "src": "4",
  5724. "dest": "11"
  5725. },
  5726. {
  5727. "src": "11",
  5728. "dest": "2"
  5729. },
  5730. {
  5731. "src": "5",
  5732. "dest": "12"
  5733. },
  5734. {
  5735. "src": "12",
  5736. "dest": "2"
  5737. },
  5738. {
  5739. "src": "6",
  5740. "dest": "13"
  5741. },
  5742. {
  5743. "src": "13",
  5744. "dest": "2"
  5745. },
  5746. {
  5747. "src": "7",
  5748. "dest": "14"
  5749. },
  5750. {
  5751. "src": "14",
  5752. "dest": "2"
  5753. },
  5754. {
  5755. "src": "8",
  5756. "dest": "16"
  5757. },
  5758. {
  5759. "src": "16",
  5760. "dest": "2"
  5761. },
  5762. {
  5763. "src": "9",
  5764. "dest": "17"
  5765. },
  5766. {
  5767. "src": "17",
  5768. "dest": "2"
  5769. },
  5770. {
  5771. "src": "1",
  5772. "dest": "18"
  5773. },
  5774. {
  5775. "src": "18",
  5776. "dest": "0"
  5777. },
  5778. {
  5779. "src": "0",
  5780. "dest": "19"
  5781. },
  5782. {
  5783. "src": "19",
  5784. "dest": "2"
  5785. },
  5786. {
  5787. "src": "2",
  5788. "dest": "20"
  5789. },
  5790. {
  5791. "src": "20",
  5792. "dest": "2"
  5793. },
  5794. {
  5795. "src": "2",
  5796. "dest": "23"
  5797. },
  5798. {
  5799. "src": "23",
  5800. "dest": "2"
  5801. },
  5802. {
  5803. "src": "2",
  5804. "dest": "24"
  5805. },
  5806. {
  5807. "src": "24",
  5808. "dest": "2"
  5809. },
  5810. {
  5811. "src": "2",
  5812. "dest": "25"
  5813. },
  5814. {
  5815. "src": "25",
  5816. "dest": "2"
  5817. },
  5818. {
  5819. "src": "26",
  5820. "dest": "27"
  5821. },
  5822. {
  5823. "src": "27",
  5824. "dest": "2"
  5825. }
  5826. ],
  5827. "metamodels": [
  5828. "/Formalisms/__LanguageSyntax__/SimpleClassDiagram/SimpleClassDiagram"
  5829. ]
  5830. }
  5831. }