Workflows.defaultIcons.pattern.metamodel 140 KB

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