NoteShort.html 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JSDoc: Class: NoteShort</title>
  6. <script src="scripts/prettify/prettify.js"> </script>
  7. <script src="scripts/prettify/lang-css.js"> </script>
  8. <!--[if lt IE 9]>
  9. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  10. <![endif]-->
  11. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  12. <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
  13. </head>
  14. <body>
  15. <div id="main">
  16. <h1 class="page-title">Class: NoteShort</h1>
  17. <section>
  18. <header>
  19. <h2><span class="attribs"><span class="type-signature"></span></span>NoteShort<span class="signature">(froca, row)</span><span class="type-signature"></span></h2>
  20. <div class="class-description">FIXME: since there's no "full note" anymore we can rename this to Note
  21. This note's representation is used in note tree and is kept in Froca.</div>
  22. </header>
  23. <article>
  24. <div class="container-overview">
  25. <h2>Constructor</h2>
  26. <h4 class="name" id="NoteShort"><span class="type-signature"></span>new NoteShort<span class="signature">(froca, row)</span><span class="type-signature"></span></h4>
  27. <h5>Parameters:</h5>
  28. <table class="params">
  29. <thead>
  30. <tr>
  31. <th>Name</th>
  32. <th>Type</th>
  33. <th class="last">Description</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. <tr>
  38. <td class="name"><code>froca</code></td>
  39. <td class="type">
  40. <span class="param-type">Froca</span>
  41. </td>
  42. <td class="description last"></td>
  43. </tr>
  44. <tr>
  45. <td class="name"><code>row</code></td>
  46. <td class="type">
  47. <span class="param-type">Object.&lt;string, Object></span>
  48. </td>
  49. <td class="description last"></td>
  50. </tr>
  51. </tbody>
  52. </table>
  53. <dl class="details">
  54. <dt class="tag-source">Source:</dt>
  55. <dd class="tag-source"><ul class="dummy"><li>
  56. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line27">line 27</a>
  57. </li></ul></dd>
  58. </dl>
  59. </div>
  60. <h3 class="subsection-title">Members</h3>
  61. <h4 class="name" id="attributes"><span class="type-signature"></span>attributes<span class="type-signature"> :Array.&lt;string></span></h4>
  62. <h5>Type:</h5>
  63. <ul>
  64. <li>
  65. <span class="param-type">Array.&lt;string></span>
  66. </li>
  67. </ul>
  68. <dl class="details">
  69. <dt class="tag-source">Source:</dt>
  70. <dd class="tag-source"><ul class="dummy"><li>
  71. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line36">line 36</a>
  72. </li></ul></dd>
  73. </dl>
  74. <h4 class="name" id="children"><span class="type-signature"></span>children<span class="type-signature"> :Array.&lt;string></span></h4>
  75. <h5>Type:</h5>
  76. <ul>
  77. <li>
  78. <span class="param-type">Array.&lt;string></span>
  79. </li>
  80. </ul>
  81. <dl class="details">
  82. <dt class="tag-source">Source:</dt>
  83. <dd class="tag-source"><ul class="dummy"><li>
  84. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line44">line 44</a>
  85. </li></ul></dd>
  86. </dl>
  87. <h4 class="name" id="childToBranch"><span class="type-signature"></span>childToBranch<span class="type-signature"> :Object.&lt;string, string></span></h4>
  88. <h5>Type:</h5>
  89. <ul>
  90. <li>
  91. <span class="param-type">Object.&lt;string, string></span>
  92. </li>
  93. </ul>
  94. <dl class="details">
  95. <dt class="tag-source">Source:</dt>
  96. <dd class="tag-source"><ul class="dummy"><li>
  97. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line50">line 50</a>
  98. </li></ul></dd>
  99. </dl>
  100. <h4 class="name" id="isProtected"><span class="type-signature"></span>isProtected<span class="type-signature"> :boolean</span></h4>
  101. <h5>Type:</h5>
  102. <ul>
  103. <li>
  104. <span class="param-type">boolean</span>
  105. </li>
  106. </ul>
  107. <dl class="details">
  108. <dt class="tag-source">Source:</dt>
  109. <dd class="tag-source"><ul class="dummy"><li>
  110. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line61">line 61</a>
  111. </li></ul></dd>
  112. </dl>
  113. <h4 class="name" id="mime"><span class="type-signature"></span>mime<span class="type-signature"> :string</span></h4>
  114. <div class="description">
  115. content-type, e.g. "application/json"
  116. </div>
  117. <h5>Type:</h5>
  118. <ul>
  119. <li>
  120. <span class="param-type">string</span>
  121. </li>
  122. </ul>
  123. <dl class="details">
  124. <dt class="tag-source">Source:</dt>
  125. <dd class="tag-source"><ul class="dummy"><li>
  126. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line71">line 71</a>
  127. </li></ul></dd>
  128. </dl>
  129. <h4 class="name" id="noteId"><span class="type-signature"></span>noteId<span class="type-signature"> :string</span></h4>
  130. <h5>Type:</h5>
  131. <ul>
  132. <li>
  133. <span class="param-type">string</span>
  134. </li>
  135. </ul>
  136. <dl class="details">
  137. <dt class="tag-source">Source:</dt>
  138. <dd class="tag-source"><ul class="dummy"><li>
  139. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line57">line 57</a>
  140. </li></ul></dd>
  141. </dl>
  142. <h4 class="name" id="parents"><span class="type-signature"></span>parents<span class="type-signature"> :Array.&lt;string></span></h4>
  143. <h5>Type:</h5>
  144. <ul>
  145. <li>
  146. <span class="param-type">Array.&lt;string></span>
  147. </li>
  148. </ul>
  149. <dl class="details">
  150. <dt class="tag-source">Source:</dt>
  151. <dd class="tag-source"><ul class="dummy"><li>
  152. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line42">line 42</a>
  153. </li></ul></dd>
  154. </dl>
  155. <h4 class="name" id="parentToBranch"><span class="type-signature"></span>parentToBranch<span class="type-signature"> :Object.&lt;string, string></span></h4>
  156. <h5>Type:</h5>
  157. <ul>
  158. <li>
  159. <span class="param-type">Object.&lt;string, string></span>
  160. </li>
  161. </ul>
  162. <dl class="details">
  163. <dt class="tag-source">Source:</dt>
  164. <dd class="tag-source"><ul class="dummy"><li>
  165. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line47">line 47</a>
  166. </li></ul></dd>
  167. </dl>
  168. <h4 class="name" id="targetRelations"><span class="type-signature"></span>targetRelations<span class="type-signature"> :Array.&lt;string></span></h4>
  169. <h5>Type:</h5>
  170. <ul>
  171. <li>
  172. <span class="param-type">Array.&lt;string></span>
  173. </li>
  174. </ul>
  175. <dl class="details">
  176. <dt class="tag-source">Source:</dt>
  177. <dd class="tag-source"><ul class="dummy"><li>
  178. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line39">line 39</a>
  179. </li></ul></dd>
  180. </dl>
  181. <h4 class="name" id="title"><span class="type-signature"></span>title<span class="type-signature"> :string</span></h4>
  182. <h5>Type:</h5>
  183. <ul>
  184. <li>
  185. <span class="param-type">string</span>
  186. </li>
  187. </ul>
  188. <dl class="details">
  189. <dt class="tag-source">Source:</dt>
  190. <dd class="tag-source"><ul class="dummy"><li>
  191. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line59">line 59</a>
  192. </li></ul></dd>
  193. </dl>
  194. <h4 class="name" id="type"><span class="type-signature"></span>type<span class="type-signature"> :string</span></h4>
  195. <div class="description">
  196. one of 'text', 'code', 'file' or 'render'
  197. </div>
  198. <h5>Type:</h5>
  199. <ul>
  200. <li>
  201. <span class="param-type">string</span>
  202. </li>
  203. </ul>
  204. <dl class="details">
  205. <dt class="tag-source">Source:</dt>
  206. <dd class="tag-source"><ul class="dummy"><li>
  207. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line66">line 66</a>
  208. </li></ul></dd>
  209. </dl>
  210. <h3 class="subsection-title">Methods</h3>
  211. <h4 class="name" id="getAttribute"><span class="type-signature"></span>getAttribute<span class="signature">(type, name)</span><span class="type-signature"> &rarr; {<a href="Attribute.html">Attribute</a>}</span></h4>
  212. <h5>Parameters:</h5>
  213. <table class="params">
  214. <thead>
  215. <tr>
  216. <th>Name</th>
  217. <th>Type</th>
  218. <th class="last">Description</th>
  219. </tr>
  220. </thead>
  221. <tbody>
  222. <tr>
  223. <td class="name"><code>type</code></td>
  224. <td class="type">
  225. <span class="param-type">string</span>
  226. </td>
  227. <td class="description last">attribute type (label, relation, etc.)</td>
  228. </tr>
  229. <tr>
  230. <td class="name"><code>name</code></td>
  231. <td class="type">
  232. <span class="param-type">string</span>
  233. </td>
  234. <td class="description last">attribute name</td>
  235. </tr>
  236. </tbody>
  237. </table>
  238. <dl class="details">
  239. <dt class="tag-source">Source:</dt>
  240. <dd class="tag-source"><ul class="dummy"><li>
  241. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line498">line 498</a>
  242. </li></ul></dd>
  243. </dl>
  244. <h5>Returns:</h5>
  245. <div class="param-desc">
  246. attribute of given type and name. If there's more such attributes, first is returned. Returns null if there's no such attribute belonging to this note.
  247. </div>
  248. <dl>
  249. <dt>
  250. Type
  251. </dt>
  252. <dd>
  253. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  254. </dd>
  255. </dl>
  256. <h4 class="name" id="getAttributes"><span class="type-signature"></span>getAttributes<span class="signature">(type<span class="signature-attributes">opt</span>, name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Attribute.html">Attribute</a>>}</span></h4>
  257. <h5>Parameters:</h5>
  258. <table class="params">
  259. <thead>
  260. <tr>
  261. <th>Name</th>
  262. <th>Type</th>
  263. <th>Attributes</th>
  264. <th class="last">Description</th>
  265. </tr>
  266. </thead>
  267. <tbody>
  268. <tr>
  269. <td class="name"><code>type</code></td>
  270. <td class="type">
  271. <span class="param-type">string</span>
  272. </td>
  273. <td class="attributes">
  274. &lt;optional><br>
  275. </td>
  276. <td class="description last">(optional) attribute type to filter</td>
  277. </tr>
  278. <tr>
  279. <td class="name"><code>name</code></td>
  280. <td class="type">
  281. <span class="param-type">string</span>
  282. </td>
  283. <td class="attributes">
  284. &lt;optional><br>
  285. </td>
  286. <td class="description last">(optional) attribute name to filter</td>
  287. </tr>
  288. </tbody>
  289. </table>
  290. <dl class="details">
  291. <dt class="tag-source">Source:</dt>
  292. <dd class="tag-source"><ul class="dummy"><li>
  293. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line236">line 236</a>
  294. </li></ul></dd>
  295. </dl>
  296. <h5>Returns:</h5>
  297. <div class="param-desc">
  298. all note's attributes, including inherited ones
  299. </div>
  300. <dl>
  301. <dt>
  302. Type
  303. </dt>
  304. <dd>
  305. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  306. </dd>
  307. </dl>
  308. <h4 class="name" id="getAttributeValue"><span class="type-signature"></span>getAttributeValue<span class="signature">(type, name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  309. <h5>Parameters:</h5>
  310. <table class="params">
  311. <thead>
  312. <tr>
  313. <th>Name</th>
  314. <th>Type</th>
  315. <th class="last">Description</th>
  316. </tr>
  317. </thead>
  318. <tbody>
  319. <tr>
  320. <td class="name"><code>type</code></td>
  321. <td class="type">
  322. <span class="param-type">string</span>
  323. </td>
  324. <td class="description last">attribute type (label, relation, etc.)</td>
  325. </tr>
  326. <tr>
  327. <td class="name"><code>name</code></td>
  328. <td class="type">
  329. <span class="param-type">string</span>
  330. </td>
  331. <td class="description last">attribute name</td>
  332. </tr>
  333. </tbody>
  334. </table>
  335. <dl class="details">
  336. <dt class="tag-source">Source:</dt>
  337. <dd class="tag-source"><ul class="dummy"><li>
  338. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line520">line 520</a>
  339. </li></ul></dd>
  340. </dl>
  341. <h5>Returns:</h5>
  342. <div class="param-desc">
  343. attribute value of given type and name or null if no such attribute exists.
  344. </div>
  345. <dl>
  346. <dt>
  347. Type
  348. </dt>
  349. <dd>
  350. <span class="param-type">string</span>
  351. </dd>
  352. </dl>
  353. <h4 class="name" id="getBranches"><span class="type-signature"></span>getBranches<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Branch.html">Branch</a>>}</span></h4>
  354. <dl class="details">
  355. <dt class="important tag-deprecated">Deprecated:</dt><dd><ul class="dummy"><li>use getParentBranches() instead</li></ul></dd>
  356. <dt class="tag-source">Source:</dt>
  357. <dd class="tag-source"><ul class="dummy"><li>
  358. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line161">line 161</a>
  359. </li></ul></dd>
  360. </dl>
  361. <h5>Returns:</h5>
  362. <dl>
  363. <dt>
  364. Type
  365. </dt>
  366. <dd>
  367. <span class="param-type">Array.&lt;<a href="Branch.html">Branch</a>></span>
  368. </dd>
  369. </dl>
  370. <h4 class="name" id="getBranchIds"><span class="type-signature"></span>getBranchIds<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;string>}</span></h4>
  371. <dl class="details">
  372. <dt class="important tag-deprecated">Deprecated:</dt><dd><ul class="dummy"><li>use getParentBranchIds() instead</li></ul></dd>
  373. <dt class="tag-source">Source:</dt>
  374. <dd class="tag-source"><ul class="dummy"><li>
  375. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line144">line 144</a>
  376. </li></ul></dd>
  377. </dl>
  378. <h5>Returns:</h5>
  379. <dl>
  380. <dt>
  381. Type
  382. </dt>
  383. <dd>
  384. <span class="param-type">Array.&lt;string></span>
  385. </dd>
  386. </dl>
  387. <h4 class="name" id="getChildBranches"><span class="type-signature"></span>getChildBranches<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Branch.html">Branch</a>>}</span></h4>
  388. <dl class="details">
  389. <dt class="tag-source">Source:</dt>
  390. <dd class="tag-source"><ul class="dummy"><li>
  391. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line171">line 171</a>
  392. </li></ul></dd>
  393. </dl>
  394. <h5>Returns:</h5>
  395. <dl>
  396. <dt>
  397. Type
  398. </dt>
  399. <dd>
  400. <span class="param-type">Array.&lt;<a href="Branch.html">Branch</a>></span>
  401. </dd>
  402. </dl>
  403. <h4 class="name" id="getChildNoteIds"><span class="type-signature"></span>getChildNoteIds<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;string>}</span></h4>
  404. <dl class="details">
  405. <dt class="tag-source">Source:</dt>
  406. <dd class="tag-source"><ul class="dummy"><li>
  407. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line209">line 209</a>
  408. </li></ul></dd>
  409. </dl>
  410. <h5>Returns:</h5>
  411. <dl>
  412. <dt>
  413. Type
  414. </dt>
  415. <dd>
  416. <span class="param-type">Array.&lt;string></span>
  417. </dd>
  418. </dl>
  419. <h4 class="name" id="getChildNotes"><span class="type-signature">(async) </span>getChildNotes<span class="signature">()</span><span class="type-signature"> &rarr; {Promise.&lt;Array.&lt;<a href="NoteShort.html">NoteShort</a>>>}</span></h4>
  420. <dl class="details">
  421. <dt class="tag-source">Source:</dt>
  422. <dd class="tag-source"><ul class="dummy"><li>
  423. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line214">line 214</a>
  424. </li></ul></dd>
  425. </dl>
  426. <h5>Returns:</h5>
  427. <dl>
  428. <dt>
  429. Type
  430. </dt>
  431. <dd>
  432. <span class="param-type">Promise.&lt;Array.&lt;<a href="NoteShort.html">NoteShort</a>>></span>
  433. </dd>
  434. </dl>
  435. <h4 class="name" id="getLabel"><span class="type-signature"></span>getLabel<span class="signature">(name)</span><span class="type-signature"> &rarr; {<a href="Attribute.html">Attribute</a>}</span></h4>
  436. <h5>Parameters:</h5>
  437. <table class="params">
  438. <thead>
  439. <tr>
  440. <th>Name</th>
  441. <th>Type</th>
  442. <th class="last">Description</th>
  443. </tr>
  444. </thead>
  445. <tbody>
  446. <tr>
  447. <td class="name"><code>name</code></td>
  448. <td class="type">
  449. <span class="param-type">string</span>
  450. </td>
  451. <td class="description last">label name</td>
  452. </tr>
  453. </tbody>
  454. </table>
  455. <dl class="details">
  456. <dt class="tag-source">Source:</dt>
  457. <dd class="tag-source"><ul class="dummy"><li>
  458. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line560">line 560</a>
  459. </li></ul></dd>
  460. </dl>
  461. <h5>Returns:</h5>
  462. <div class="param-desc">
  463. label if it exists, null otherwise
  464. </div>
  465. <dl>
  466. <dt>
  467. Type
  468. </dt>
  469. <dd>
  470. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  471. </dd>
  472. </dl>
  473. <h4 class="name" id="getLabels"><span class="type-signature"></span>getLabels<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Attribute.html">Attribute</a>>}</span></h4>
  474. <h5>Parameters:</h5>
  475. <table class="params">
  476. <thead>
  477. <tr>
  478. <th>Name</th>
  479. <th>Type</th>
  480. <th>Attributes</th>
  481. <th class="last">Description</th>
  482. </tr>
  483. </thead>
  484. <tbody>
  485. <tr>
  486. <td class="name"><code>name</code></td>
  487. <td class="type">
  488. <span class="param-type">string</span>
  489. </td>
  490. <td class="attributes">
  491. &lt;optional><br>
  492. </td>
  493. <td class="description last">label name to filter</td>
  494. </tr>
  495. </tbody>
  496. </table>
  497. <dl class="details">
  498. <dt class="tag-source">Source:</dt>
  499. <dd class="tag-source"><ul class="dummy"><li>
  500. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line384">line 384</a>
  501. </li></ul></dd>
  502. </dl>
  503. <h5>Returns:</h5>
  504. <div class="param-desc">
  505. all note's labels (attributes with type label), including inherited ones
  506. </div>
  507. <dl>
  508. <dt>
  509. Type
  510. </dt>
  511. <dd>
  512. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  513. </dd>
  514. </dl>
  515. <h4 class="name" id="getLabelValue"><span class="type-signature"></span>getLabelValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  516. <h5>Parameters:</h5>
  517. <table class="params">
  518. <thead>
  519. <tr>
  520. <th>Name</th>
  521. <th>Type</th>
  522. <th class="last">Description</th>
  523. </tr>
  524. </thead>
  525. <tbody>
  526. <tr>
  527. <td class="name"><code>name</code></td>
  528. <td class="type">
  529. <span class="param-type">string</span>
  530. </td>
  531. <td class="description last">label name</td>
  532. </tr>
  533. </tbody>
  534. </table>
  535. <dl class="details">
  536. <dt class="tag-source">Source:</dt>
  537. <dd class="tag-source"><ul class="dummy"><li>
  538. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line584">line 584</a>
  539. </li></ul></dd>
  540. </dl>
  541. <h5>Returns:</h5>
  542. <div class="param-desc">
  543. label value if label exists, null otherwise
  544. </div>
  545. <dl>
  546. <dt>
  547. Type
  548. </dt>
  549. <dd>
  550. <span class="param-type">string</span>
  551. </dd>
  552. </dl>
  553. <h4 class="name" id="getNoteComplement"><span class="type-signature">(async) </span>getNoteComplement<span class="signature">()</span><span class="type-signature"> &rarr; {Promise.&lt;<a href="NoteComplement.html">NoteComplement</a>>}</span></h4>
  554. <div class="description">
  555. Return note complement which is most importantly note's content
  556. </div>
  557. <dl class="details">
  558. <dt class="tag-source">Source:</dt>
  559. <dd class="tag-source"><ul class="dummy"><li>
  560. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line706">line 706</a>
  561. </li></ul></dd>
  562. </dl>
  563. <h5>Returns:</h5>
  564. <dl>
  565. <dt>
  566. Type
  567. </dt>
  568. <dd>
  569. <span class="param-type">Promise.&lt;<a href="NoteComplement.html">NoteComplement</a>></span>
  570. </dd>
  571. </dl>
  572. <h4 class="name" id="getOwnedAttribute"><span class="type-signature"></span>getOwnedAttribute<span class="signature">(type, name)</span><span class="type-signature"> &rarr; {<a href="Attribute.html">Attribute</a>}</span></h4>
  573. <h5>Parameters:</h5>
  574. <table class="params">
  575. <thead>
  576. <tr>
  577. <th>Name</th>
  578. <th>Type</th>
  579. <th class="last">Description</th>
  580. </tr>
  581. </thead>
  582. <tbody>
  583. <tr>
  584. <td class="name"><code>type</code></td>
  585. <td class="type">
  586. <span class="param-type">string</span>
  587. </td>
  588. <td class="description last">attribute type (label, relation, etc.)</td>
  589. </tr>
  590. <tr>
  591. <td class="name"><code>name</code></td>
  592. <td class="type">
  593. <span class="param-type">string</span>
  594. </td>
  595. <td class="description last">attribute name</td>
  596. </tr>
  597. </tbody>
  598. </table>
  599. <dl class="details">
  600. <dt class="tag-source">Source:</dt>
  601. <dd class="tag-source"><ul class="dummy"><li>
  602. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line487">line 487</a>
  603. </li></ul></dd>
  604. </dl>
  605. <h5>Returns:</h5>
  606. <div class="param-desc">
  607. attribute of given type and name. If there's more such attributes, first is returned. Returns null if there's no such attribute belonging to this note.
  608. </div>
  609. <dl>
  610. <dt>
  611. Type
  612. </dt>
  613. <dd>
  614. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  615. </dd>
  616. </dl>
  617. <h4 class="name" id="getOwnedAttributes"><span class="type-signature"></span>getOwnedAttributes<span class="signature">(type<span class="signature-attributes">opt</span>, name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Attribute.html">Attribute</a>>}</span></h4>
  618. <h5>Parameters:</h5>
  619. <table class="params">
  620. <thead>
  621. <tr>
  622. <th>Name</th>
  623. <th>Type</th>
  624. <th>Attributes</th>
  625. <th class="last">Description</th>
  626. </tr>
  627. </thead>
  628. <tbody>
  629. <tr>
  630. <td class="name"><code>type</code></td>
  631. <td class="type">
  632. <span class="param-type">string</span>
  633. </td>
  634. <td class="attributes">
  635. &lt;optional><br>
  636. </td>
  637. <td class="description last">(optional) attribute type to filter</td>
  638. </tr>
  639. <tr>
  640. <td class="name"><code>name</code></td>
  641. <td class="type">
  642. <span class="param-type">string</span>
  643. </td>
  644. <td class="attributes">
  645. &lt;optional><br>
  646. </td>
  647. <td class="description last">(optional) attribute name to filter</td>
  648. </tr>
  649. </tbody>
  650. </table>
  651. <dl class="details">
  652. <dt class="tag-source">Source:</dt>
  653. <dd class="tag-source"><ul class="dummy"><li>
  654. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line223">line 223</a>
  655. </li></ul></dd>
  656. </dl>
  657. <h5>Returns:</h5>
  658. <div class="param-desc">
  659. all note's attributes, including inherited ones
  660. </div>
  661. <dl>
  662. <dt>
  663. Type
  664. </dt>
  665. <dd>
  666. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  667. </dd>
  668. </dl>
  669. <h4 class="name" id="getOwnedAttributeValue"><span class="type-signature"></span>getOwnedAttributeValue<span class="signature">(type, name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  670. <h5>Parameters:</h5>
  671. <table class="params">
  672. <thead>
  673. <tr>
  674. <th>Name</th>
  675. <th>Type</th>
  676. <th class="last">Description</th>
  677. </tr>
  678. </thead>
  679. <tbody>
  680. <tr>
  681. <td class="name"><code>type</code></td>
  682. <td class="type">
  683. <span class="param-type">string</span>
  684. </td>
  685. <td class="description last">attribute type (label, relation, etc.)</td>
  686. </tr>
  687. <tr>
  688. <td class="name"><code>name</code></td>
  689. <td class="type">
  690. <span class="param-type">string</span>
  691. </td>
  692. <td class="description last">attribute name</td>
  693. </tr>
  694. </tbody>
  695. </table>
  696. <dl class="details">
  697. <dt class="tag-source">Source:</dt>
  698. <dd class="tag-source"><ul class="dummy"><li>
  699. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line509">line 509</a>
  700. </li></ul></dd>
  701. </dl>
  702. <h5>Returns:</h5>
  703. <div class="param-desc">
  704. attribute value of given type and name or null if no such attribute exists.
  705. </div>
  706. <dl>
  707. <dt>
  708. Type
  709. </dt>
  710. <dd>
  711. <span class="param-type">string</span>
  712. </dd>
  713. </dl>
  714. <h4 class="name" id="getOwnedLabel"><span class="type-signature"></span>getOwnedLabel<span class="signature">(name)</span><span class="type-signature"> &rarr; {<a href="Attribute.html">Attribute</a>}</span></h4>
  715. <h5>Parameters:</h5>
  716. <table class="params">
  717. <thead>
  718. <tr>
  719. <th>Name</th>
  720. <th>Type</th>
  721. <th class="last">Description</th>
  722. </tr>
  723. </thead>
  724. <tbody>
  725. <tr>
  726. <td class="name"><code>name</code></td>
  727. <td class="type">
  728. <span class="param-type">string</span>
  729. </td>
  730. <td class="description last">label name</td>
  731. </tr>
  732. </tbody>
  733. </table>
  734. <dl class="details">
  735. <dt class="tag-source">Source:</dt>
  736. <dd class="tag-source"><ul class="dummy"><li>
  737. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line554">line 554</a>
  738. </li></ul></dd>
  739. </dl>
  740. <h5>Returns:</h5>
  741. <div class="param-desc">
  742. label if it exists, null otherwise
  743. </div>
  744. <dl>
  745. <dt>
  746. Type
  747. </dt>
  748. <dd>
  749. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  750. </dd>
  751. </dl>
  752. <h4 class="name" id="getOwnedLabels"><span class="type-signature"></span>getOwnedLabels<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Attribute.html">Attribute</a>>}</span></h4>
  753. <h5>Parameters:</h5>
  754. <table class="params">
  755. <thead>
  756. <tr>
  757. <th>Name</th>
  758. <th>Type</th>
  759. <th>Attributes</th>
  760. <th class="last">Description</th>
  761. </tr>
  762. </thead>
  763. <tbody>
  764. <tr>
  765. <td class="name"><code>name</code></td>
  766. <td class="type">
  767. <span class="param-type">string</span>
  768. </td>
  769. <td class="attributes">
  770. &lt;optional><br>
  771. </td>
  772. <td class="description last">label name to filter</td>
  773. </tr>
  774. </tbody>
  775. </table>
  776. <dl class="details">
  777. <dt class="tag-source">Source:</dt>
  778. <dd class="tag-source"><ul class="dummy"><li>
  779. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line376">line 376</a>
  780. </li></ul></dd>
  781. </dl>
  782. <h5>Returns:</h5>
  783. <div class="param-desc">
  784. all note's labels (attributes with type label), including inherited ones
  785. </div>
  786. <dl>
  787. <dt>
  788. Type
  789. </dt>
  790. <dd>
  791. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  792. </dd>
  793. </dl>
  794. <h4 class="name" id="getOwnedLabelValue"><span class="type-signature"></span>getOwnedLabelValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  795. <h5>Parameters:</h5>
  796. <table class="params">
  797. <thead>
  798. <tr>
  799. <th>Name</th>
  800. <th>Type</th>
  801. <th class="last">Description</th>
  802. </tr>
  803. </thead>
  804. <tbody>
  805. <tr>
  806. <td class="name"><code>name</code></td>
  807. <td class="type">
  808. <span class="param-type">string</span>
  809. </td>
  810. <td class="description last">label name</td>
  811. </tr>
  812. </tbody>
  813. </table>
  814. <dl class="details">
  815. <dt class="tag-source">Source:</dt>
  816. <dd class="tag-source"><ul class="dummy"><li>
  817. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line578">line 578</a>
  818. </li></ul></dd>
  819. </dl>
  820. <h5>Returns:</h5>
  821. <div class="param-desc">
  822. label value if label exists, null otherwise
  823. </div>
  824. <dl>
  825. <dt>
  826. Type
  827. </dt>
  828. <dd>
  829. <span class="param-type">string</span>
  830. </dd>
  831. </dl>
  832. <h4 class="name" id="getOwnedRelation"><span class="type-signature"></span>getOwnedRelation<span class="signature">(name)</span><span class="type-signature"> &rarr; {<a href="Attribute.html">Attribute</a>}</span></h4>
  833. <h5>Parameters:</h5>
  834. <table class="params">
  835. <thead>
  836. <tr>
  837. <th>Name</th>
  838. <th>Type</th>
  839. <th class="last">Description</th>
  840. </tr>
  841. </thead>
  842. <tbody>
  843. <tr>
  844. <td class="name"><code>name</code></td>
  845. <td class="type">
  846. <span class="param-type">string</span>
  847. </td>
  848. <td class="description last">relation name</td>
  849. </tr>
  850. </tbody>
  851. </table>
  852. <dl class="details">
  853. <dt class="tag-source">Source:</dt>
  854. <dd class="tag-source"><ul class="dummy"><li>
  855. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line566">line 566</a>
  856. </li></ul></dd>
  857. </dl>
  858. <h5>Returns:</h5>
  859. <div class="param-desc">
  860. relation if it exists, null otherwise
  861. </div>
  862. <dl>
  863. <dt>
  864. Type
  865. </dt>
  866. <dd>
  867. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  868. </dd>
  869. </dl>
  870. <h4 class="name" id="getOwnedRelations"><span class="type-signature"></span>getOwnedRelations<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Attribute.html">Attribute</a>>}</span></h4>
  871. <h5>Parameters:</h5>
  872. <table class="params">
  873. <thead>
  874. <tr>
  875. <th>Name</th>
  876. <th>Type</th>
  877. <th>Attributes</th>
  878. <th class="last">Description</th>
  879. </tr>
  880. </thead>
  881. <tbody>
  882. <tr>
  883. <td class="name"><code>name</code></td>
  884. <td class="type">
  885. <span class="param-type">string</span>
  886. </td>
  887. <td class="attributes">
  888. &lt;optional><br>
  889. </td>
  890. <td class="description last">relation name to filter</td>
  891. </tr>
  892. </tbody>
  893. </table>
  894. <dl class="details">
  895. <dt class="tag-source">Source:</dt>
  896. <dd class="tag-source"><ul class="dummy"><li>
  897. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line452">line 452</a>
  898. </li></ul></dd>
  899. </dl>
  900. <h5>Returns:</h5>
  901. <div class="param-desc">
  902. all note's relations (attributes with type relation), including inherited ones
  903. </div>
  904. <dl>
  905. <dt>
  906. Type
  907. </dt>
  908. <dd>
  909. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  910. </dd>
  911. </dl>
  912. <h4 class="name" id="getOwnedRelationValue"><span class="type-signature"></span>getOwnedRelationValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  913. <h5>Parameters:</h5>
  914. <table class="params">
  915. <thead>
  916. <tr>
  917. <th>Name</th>
  918. <th>Type</th>
  919. <th class="last">Description</th>
  920. </tr>
  921. </thead>
  922. <tbody>
  923. <tr>
  924. <td class="name"><code>name</code></td>
  925. <td class="type">
  926. <span class="param-type">string</span>
  927. </td>
  928. <td class="description last">relation name</td>
  929. </tr>
  930. </tbody>
  931. </table>
  932. <dl class="details">
  933. <dt class="tag-source">Source:</dt>
  934. <dd class="tag-source"><ul class="dummy"><li>
  935. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line590">line 590</a>
  936. </li></ul></dd>
  937. </dl>
  938. <h5>Returns:</h5>
  939. <div class="param-desc">
  940. relation value if relation exists, null otherwise
  941. </div>
  942. <dl>
  943. <dt>
  944. Type
  945. </dt>
  946. <dd>
  947. <span class="param-type">string</span>
  948. </dd>
  949. </dl>
  950. <h4 class="name" id="getParentBranches"><span class="type-signature"></span>getParentBranches<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Branch.html">Branch</a>>}</span></h4>
  951. <dl class="details">
  952. <dt class="tag-source">Source:</dt>
  953. <dd class="tag-source"><ul class="dummy"><li>
  954. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line151">line 151</a>
  955. </li></ul></dd>
  956. </dl>
  957. <h5>Returns:</h5>
  958. <dl>
  959. <dt>
  960. Type
  961. </dt>
  962. <dd>
  963. <span class="param-type">Array.&lt;<a href="Branch.html">Branch</a>></span>
  964. </dd>
  965. </dl>
  966. <h4 class="name" id="getParentBranchIds"><span class="type-signature"></span>getParentBranchIds<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;string>}</span></h4>
  967. <dl class="details">
  968. <dt class="tag-source">Source:</dt>
  969. <dd class="tag-source"><ul class="dummy"><li>
  970. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line136">line 136</a>
  971. </li></ul></dd>
  972. </dl>
  973. <h5>Returns:</h5>
  974. <dl>
  975. <dt>
  976. Type
  977. </dt>
  978. <dd>
  979. <span class="param-type">Array.&lt;string></span>
  980. </dd>
  981. </dl>
  982. <h4 class="name" id="getParentNoteIds"><span class="type-signature"></span>getParentNoteIds<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;string>}</span></h4>
  983. <dl class="details">
  984. <dt class="tag-source">Source:</dt>
  985. <dd class="tag-source"><ul class="dummy"><li>
  986. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line179">line 179</a>
  987. </li></ul></dd>
  988. </dl>
  989. <h5>Returns:</h5>
  990. <dl>
  991. <dt>
  992. Type
  993. </dt>
  994. <dd>
  995. <span class="param-type">Array.&lt;string></span>
  996. </dd>
  997. </dl>
  998. <h4 class="name" id="getParentNotes"><span class="type-signature"></span>getParentNotes<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="NoteShort.html">NoteShort</a>>}</span></h4>
  999. <dl class="details">
  1000. <dt class="tag-source">Source:</dt>
  1001. <dd class="tag-source"><ul class="dummy"><li>
  1002. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line184">line 184</a>
  1003. </li></ul></dd>
  1004. </dl>
  1005. <h5>Returns:</h5>
  1006. <dl>
  1007. <dt>
  1008. Type
  1009. </dt>
  1010. <dd>
  1011. <span class="param-type">Array.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  1012. </dd>
  1013. </dl>
  1014. <h4 class="name" id="getRelation"><span class="type-signature"></span>getRelation<span class="signature">(name)</span><span class="type-signature"> &rarr; {<a href="Attribute.html">Attribute</a>}</span></h4>
  1015. <h5>Parameters:</h5>
  1016. <table class="params">
  1017. <thead>
  1018. <tr>
  1019. <th>Name</th>
  1020. <th>Type</th>
  1021. <th class="last">Description</th>
  1022. </tr>
  1023. </thead>
  1024. <tbody>
  1025. <tr>
  1026. <td class="name"><code>name</code></td>
  1027. <td class="type">
  1028. <span class="param-type">string</span>
  1029. </td>
  1030. <td class="description last">relation name</td>
  1031. </tr>
  1032. </tbody>
  1033. </table>
  1034. <dl class="details">
  1035. <dt class="tag-source">Source:</dt>
  1036. <dd class="tag-source"><ul class="dummy"><li>
  1037. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line572">line 572</a>
  1038. </li></ul></dd>
  1039. </dl>
  1040. <h5>Returns:</h5>
  1041. <div class="param-desc">
  1042. relation if it exists, null otherwise
  1043. </div>
  1044. <dl>
  1045. <dt>
  1046. Type
  1047. </dt>
  1048. <dd>
  1049. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  1050. </dd>
  1051. </dl>
  1052. <h4 class="name" id="getRelations"><span class="type-signature"></span>getRelations<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Attribute.html">Attribute</a>>}</span></h4>
  1053. <h5>Parameters:</h5>
  1054. <table class="params">
  1055. <thead>
  1056. <tr>
  1057. <th>Name</th>
  1058. <th>Type</th>
  1059. <th>Attributes</th>
  1060. <th class="last">Description</th>
  1061. </tr>
  1062. </thead>
  1063. <tbody>
  1064. <tr>
  1065. <td class="name"><code>name</code></td>
  1066. <td class="type">
  1067. <span class="param-type">string</span>
  1068. </td>
  1069. <td class="attributes">
  1070. &lt;optional><br>
  1071. </td>
  1072. <td class="description last">relation name to filter</td>
  1073. </tr>
  1074. </tbody>
  1075. </table>
  1076. <dl class="details">
  1077. <dt class="tag-source">Source:</dt>
  1078. <dd class="tag-source"><ul class="dummy"><li>
  1079. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line460">line 460</a>
  1080. </li></ul></dd>
  1081. </dl>
  1082. <h5>Returns:</h5>
  1083. <div class="param-desc">
  1084. all note's relations (attributes with type relation), including inherited ones
  1085. </div>
  1086. <dl>
  1087. <dt>
  1088. Type
  1089. </dt>
  1090. <dd>
  1091. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  1092. </dd>
  1093. </dl>
  1094. <h4 class="name" id="getRelationTarget"><span class="type-signature">(async) </span>getRelationTarget<span class="signature">(name)</span><span class="type-signature"> &rarr; {Promise.&lt;<a href="NoteShort.html">NoteShort</a>>|null}</span></h4>
  1095. <h5>Parameters:</h5>
  1096. <table class="params">
  1097. <thead>
  1098. <tr>
  1099. <th>Name</th>
  1100. <th>Type</th>
  1101. <th class="last">Description</th>
  1102. </tr>
  1103. </thead>
  1104. <tbody>
  1105. <tr>
  1106. <td class="name"><code>name</code></td>
  1107. <td class="type">
  1108. <span class="param-type">string</span>
  1109. </td>
  1110. <td class="description last"></td>
  1111. </tr>
  1112. </tbody>
  1113. </table>
  1114. <dl class="details">
  1115. <dt class="tag-source">Source:</dt>
  1116. <dd class="tag-source"><ul class="dummy"><li>
  1117. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line602">line 602</a>
  1118. </li></ul></dd>
  1119. </dl>
  1120. <h5>Returns:</h5>
  1121. <div class="param-desc">
  1122. target note of the relation or null (if target is empty or note was not found)
  1123. </div>
  1124. <dl>
  1125. <dt>
  1126. Type
  1127. </dt>
  1128. <dd>
  1129. <span class="param-type">Promise.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  1130. |
  1131. <span class="param-type">null</span>
  1132. </dd>
  1133. </dl>
  1134. <h4 class="name" id="getRelationTargets"><span class="type-signature">(async) </span>getRelationTargets<span class="signature">(name<span class="signature-attributes">opt</span>)</span><span class="type-signature"> &rarr; {Promise.&lt;Array.&lt;<a href="NoteShort.html">NoteShort</a>>>}</span></h4>
  1135. <h5>Parameters:</h5>
  1136. <table class="params">
  1137. <thead>
  1138. <tr>
  1139. <th>Name</th>
  1140. <th>Type</th>
  1141. <th>Attributes</th>
  1142. <th class="last">Description</th>
  1143. </tr>
  1144. </thead>
  1145. <tbody>
  1146. <tr>
  1147. <td class="name"><code>name</code></td>
  1148. <td class="type">
  1149. <span class="param-type">string</span>
  1150. </td>
  1151. <td class="attributes">
  1152. &lt;optional><br>
  1153. </td>
  1154. <td class="description last">relation name to filter</td>
  1155. </tr>
  1156. </tbody>
  1157. </table>
  1158. <dl class="details">
  1159. <dt class="tag-source">Source:</dt>
  1160. <dd class="tag-source"><ul class="dummy"><li>
  1161. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line612">line 612</a>
  1162. </li></ul></dd>
  1163. </dl>
  1164. <h5>Returns:</h5>
  1165. <dl>
  1166. <dt>
  1167. Type
  1168. </dt>
  1169. <dd>
  1170. <span class="param-type">Promise.&lt;Array.&lt;<a href="NoteShort.html">NoteShort</a>>></span>
  1171. </dd>
  1172. </dl>
  1173. <h4 class="name" id="getRelationValue"><span class="type-signature"></span>getRelationValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  1174. <h5>Parameters:</h5>
  1175. <table class="params">
  1176. <thead>
  1177. <tr>
  1178. <th>Name</th>
  1179. <th>Type</th>
  1180. <th class="last">Description</th>
  1181. </tr>
  1182. </thead>
  1183. <tbody>
  1184. <tr>
  1185. <td class="name"><code>name</code></td>
  1186. <td class="type">
  1187. <span class="param-type">string</span>
  1188. </td>
  1189. <td class="description last">relation name</td>
  1190. </tr>
  1191. </tbody>
  1192. </table>
  1193. <dl class="details">
  1194. <dt class="tag-source">Source:</dt>
  1195. <dd class="tag-source"><ul class="dummy"><li>
  1196. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line596">line 596</a>
  1197. </li></ul></dd>
  1198. </dl>
  1199. <h5>Returns:</h5>
  1200. <div class="param-desc">
  1201. relation value if relation exists, null otherwise
  1202. </div>
  1203. <dl>
  1204. <dt>
  1205. Type
  1206. </dt>
  1207. <dd>
  1208. <span class="param-type">string</span>
  1209. </dd>
  1210. </dl>
  1211. <h4 class="name" id="getScriptEnv"><span class="type-signature"></span>getScriptEnv<span class="signature">()</span><span class="type-signature"> &rarr; {string|null}</span></h4>
  1212. <dl class="details">
  1213. <dt class="tag-source">Source:</dt>
  1214. <dd class="tag-source"><ul class="dummy"><li>
  1215. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line750">line 750</a>
  1216. </li></ul></dd>
  1217. </dl>
  1218. <h5>Returns:</h5>
  1219. <div class="param-desc">
  1220. JS script environment - either "frontend" or "backend"
  1221. </div>
  1222. <dl>
  1223. <dt>
  1224. Type
  1225. </dt>
  1226. <dd>
  1227. <span class="param-type">string</span>
  1228. |
  1229. <span class="param-type">null</span>
  1230. </dd>
  1231. </dl>
  1232. <h4 class="name" id="getTargetRelations"><span class="type-signature"></span>getTargetRelations<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="Attribute.html">Attribute</a>>}</span></h4>
  1233. <div class="description">
  1234. Get relations which target this note
  1235. </div>
  1236. <dl class="details">
  1237. <dt class="tag-source">Source:</dt>
  1238. <dd class="tag-source"><ul class="dummy"><li>
  1239. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line685">line 685</a>
  1240. </li></ul></dd>
  1241. </dl>
  1242. <h5>Returns:</h5>
  1243. <dl>
  1244. <dt>
  1245. Type
  1246. </dt>
  1247. <dd>
  1248. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  1249. </dd>
  1250. </dl>
  1251. <h4 class="name" id="getTargetRelationSourceNotes"><span class="type-signature">(async) </span>getTargetRelationSourceNotes<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="NoteShort.html">NoteShort</a>>}</span></h4>
  1252. <div class="description">
  1253. Get relations which target this note
  1254. </div>
  1255. <dl class="details">
  1256. <dt class="tag-source">Source:</dt>
  1257. <dd class="tag-source"><ul class="dummy"><li>
  1258. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line695">line 695</a>
  1259. </li></ul></dd>
  1260. </dl>
  1261. <h5>Returns:</h5>
  1262. <dl>
  1263. <dt>
  1264. Type
  1265. </dt>
  1266. <dd>
  1267. <span class="param-type">Array.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  1268. </dd>
  1269. </dl>
  1270. <h4 class="name" id="getTemplateNotes"><span class="type-signature"></span>getTemplateNotes<span class="signature">()</span><span class="type-signature"> &rarr; {Array.&lt;<a href="NoteShort.html">NoteShort</a>>}</span></h4>
  1271. <dl class="details">
  1272. <dt class="tag-source">Source:</dt>
  1273. <dd class="tag-source"><ul class="dummy"><li>
  1274. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line626">line 626</a>
  1275. </li></ul></dd>
  1276. </dl>
  1277. <h5>Returns:</h5>
  1278. <dl>
  1279. <dt>
  1280. Type
  1281. </dt>
  1282. <dd>
  1283. <span class="param-type">Array.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  1284. </dd>
  1285. </dl>
  1286. <h4 class="name" id="hasAttribute"><span class="type-signature"></span>hasAttribute<span class="signature">(type, name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1287. <h5>Parameters:</h5>
  1288. <table class="params">
  1289. <thead>
  1290. <tr>
  1291. <th>Name</th>
  1292. <th>Type</th>
  1293. <th class="last">Description</th>
  1294. </tr>
  1295. </thead>
  1296. <tbody>
  1297. <tr>
  1298. <td class="name"><code>type</code></td>
  1299. <td class="type">
  1300. <span class="param-type">string</span>
  1301. </td>
  1302. <td class="description last">attribute type (label, relation, etc.)</td>
  1303. </tr>
  1304. <tr>
  1305. <td class="name"><code>name</code></td>
  1306. <td class="type">
  1307. <span class="param-type">string</span>
  1308. </td>
  1309. <td class="description last">attribute name</td>
  1310. </tr>
  1311. </tbody>
  1312. </table>
  1313. <dl class="details">
  1314. <dt class="tag-source">Source:</dt>
  1315. <dd class="tag-source"><ul class="dummy"><li>
  1316. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line469">line 469</a>
  1317. </li></ul></dd>
  1318. </dl>
  1319. <h5>Returns:</h5>
  1320. <div class="param-desc">
  1321. true if note has an attribute with given type and name (including inherited)
  1322. </div>
  1323. <dl>
  1324. <dt>
  1325. Type
  1326. </dt>
  1327. <dd>
  1328. <span class="param-type">boolean</span>
  1329. </dd>
  1330. </dl>
  1331. <h4 class="name" id="hasChildren"><span class="type-signature"></span>hasChildren<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1332. <dl class="details">
  1333. <dt class="tag-source">Source:</dt>
  1334. <dd class="tag-source"><ul class="dummy"><li>
  1335. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line166">line 166</a>
  1336. </li></ul></dd>
  1337. </dl>
  1338. <h5>Returns:</h5>
  1339. <dl>
  1340. <dt>
  1341. Type
  1342. </dt>
  1343. <dd>
  1344. <span class="param-type">boolean</span>
  1345. </dd>
  1346. </dl>
  1347. <h4 class="name" id="hasLabel"><span class="type-signature"></span>hasLabel<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1348. <h5>Parameters:</h5>
  1349. <table class="params">
  1350. <thead>
  1351. <tr>
  1352. <th>Name</th>
  1353. <th>Type</th>
  1354. <th class="last">Description</th>
  1355. </tr>
  1356. </thead>
  1357. <tbody>
  1358. <tr>
  1359. <td class="name"><code>name</code></td>
  1360. <td class="type">
  1361. <span class="param-type">string</span>
  1362. </td>
  1363. <td class="description last">label name</td>
  1364. </tr>
  1365. </tbody>
  1366. </table>
  1367. <dl class="details">
  1368. <dt class="tag-source">Source:</dt>
  1369. <dd class="tag-source"><ul class="dummy"><li>
  1370. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line536">line 536</a>
  1371. </li></ul></dd>
  1372. </dl>
  1373. <h5>Returns:</h5>
  1374. <div class="param-desc">
  1375. true if label exists (including inherited)
  1376. </div>
  1377. <dl>
  1378. <dt>
  1379. Type
  1380. </dt>
  1381. <dd>
  1382. <span class="param-type">boolean</span>
  1383. </dd>
  1384. </dl>
  1385. <h4 class="name" id="hasOwnedAttribute"><span class="type-signature"></span>hasOwnedAttribute<span class="signature">(type, name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1386. <h5>Parameters:</h5>
  1387. <table class="params">
  1388. <thead>
  1389. <tr>
  1390. <th>Name</th>
  1391. <th>Type</th>
  1392. <th class="last">Description</th>
  1393. </tr>
  1394. </thead>
  1395. <tbody>
  1396. <tr>
  1397. <td class="name"><code>type</code></td>
  1398. <td class="type">
  1399. <span class="param-type">string</span>
  1400. </td>
  1401. <td class="description last">attribute type (label, relation, etc.)</td>
  1402. </tr>
  1403. <tr>
  1404. <td class="name"><code>name</code></td>
  1405. <td class="type">
  1406. <span class="param-type">string</span>
  1407. </td>
  1408. <td class="description last">attribute name</td>
  1409. </tr>
  1410. </tbody>
  1411. </table>
  1412. <dl class="details">
  1413. <dt class="tag-source">Source:</dt>
  1414. <dd class="tag-source"><ul class="dummy"><li>
  1415. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line478">line 478</a>
  1416. </li></ul></dd>
  1417. </dl>
  1418. <h5>Returns:</h5>
  1419. <div class="param-desc">
  1420. true if note has an attribute with given type and name (including inherited)
  1421. </div>
  1422. <dl>
  1423. <dt>
  1424. Type
  1425. </dt>
  1426. <dd>
  1427. <span class="param-type">boolean</span>
  1428. </dd>
  1429. </dl>
  1430. <h4 class="name" id="hasOwnedLabel"><span class="type-signature"></span>hasOwnedLabel<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1431. <h5>Parameters:</h5>
  1432. <table class="params">
  1433. <thead>
  1434. <tr>
  1435. <th>Name</th>
  1436. <th>Type</th>
  1437. <th class="last">Description</th>
  1438. </tr>
  1439. </thead>
  1440. <tbody>
  1441. <tr>
  1442. <td class="name"><code>name</code></td>
  1443. <td class="type">
  1444. <span class="param-type">string</span>
  1445. </td>
  1446. <td class="description last">label name</td>
  1447. </tr>
  1448. </tbody>
  1449. </table>
  1450. <dl class="details">
  1451. <dt class="tag-source">Source:</dt>
  1452. <dd class="tag-source"><ul class="dummy"><li>
  1453. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line530">line 530</a>
  1454. </li></ul></dd>
  1455. </dl>
  1456. <h5>Returns:</h5>
  1457. <div class="param-desc">
  1458. true if label exists (excluding inherited)
  1459. </div>
  1460. <dl>
  1461. <dt>
  1462. Type
  1463. </dt>
  1464. <dd>
  1465. <span class="param-type">boolean</span>
  1466. </dd>
  1467. </dl>
  1468. <h4 class="name" id="hasOwnedRelation"><span class="type-signature"></span>hasOwnedRelation<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1469. <h5>Parameters:</h5>
  1470. <table class="params">
  1471. <thead>
  1472. <tr>
  1473. <th>Name</th>
  1474. <th>Type</th>
  1475. <th class="last">Description</th>
  1476. </tr>
  1477. </thead>
  1478. <tbody>
  1479. <tr>
  1480. <td class="name"><code>name</code></td>
  1481. <td class="type">
  1482. <span class="param-type">string</span>
  1483. </td>
  1484. <td class="description last">relation name</td>
  1485. </tr>
  1486. </tbody>
  1487. </table>
  1488. <dl class="details">
  1489. <dt class="tag-source">Source:</dt>
  1490. <dd class="tag-source"><ul class="dummy"><li>
  1491. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line542">line 542</a>
  1492. </li></ul></dd>
  1493. </dl>
  1494. <h5>Returns:</h5>
  1495. <div class="param-desc">
  1496. true if relation exists (excluding inherited)
  1497. </div>
  1498. <dl>
  1499. <dt>
  1500. Type
  1501. </dt>
  1502. <dd>
  1503. <span class="param-type">boolean</span>
  1504. </dd>
  1505. </dl>
  1506. <h4 class="name" id="hasRelation"><span class="type-signature"></span>hasRelation<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1507. <h5>Parameters:</h5>
  1508. <table class="params">
  1509. <thead>
  1510. <tr>
  1511. <th>Name</th>
  1512. <th>Type</th>
  1513. <th class="last">Description</th>
  1514. </tr>
  1515. </thead>
  1516. <tbody>
  1517. <tr>
  1518. <td class="name"><code>name</code></td>
  1519. <td class="type">
  1520. <span class="param-type">string</span>
  1521. </td>
  1522. <td class="description last">relation name</td>
  1523. </tr>
  1524. </tbody>
  1525. </table>
  1526. <dl class="details">
  1527. <dt class="tag-source">Source:</dt>
  1528. <dd class="tag-source"><ul class="dummy"><li>
  1529. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line548">line 548</a>
  1530. </li></ul></dd>
  1531. </dl>
  1532. <h5>Returns:</h5>
  1533. <div class="param-desc">
  1534. true if relation exists (including inherited)
  1535. </div>
  1536. <dl>
  1537. <dt>
  1538. Type
  1539. </dt>
  1540. <dd>
  1541. <span class="param-type">boolean</span>
  1542. </dd>
  1543. </dl>
  1544. <h4 class="name" id="invalidateAttributeCache"><span class="type-signature"></span>invalidateAttributeCache<span class="signature">()</span><span class="type-signature"></span></h4>
  1545. <dl class="details">
  1546. <dt class="important tag-deprecated">Deprecated:</dt><dd><ul class="dummy"><li>NOOP</li></ul></dd>
  1547. <dt class="tag-source">Source:</dt>
  1548. <dd class="tag-source"><ul class="dummy"><li>
  1549. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line678">line 678</a>
  1550. </li></ul></dd>
  1551. </dl>
  1552. <h4 class="name" id="isHtml"><span class="type-signature"></span>isHtml<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1553. <dl class="details">
  1554. <dt class="tag-source">Source:</dt>
  1555. <dd class="tag-source"><ul class="dummy"><li>
  1556. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line745">line 745</a>
  1557. </li></ul></dd>
  1558. </dl>
  1559. <h5>Returns:</h5>
  1560. <div class="param-desc">
  1561. true if this note is HTML
  1562. </div>
  1563. <dl>
  1564. <dt>
  1565. Type
  1566. </dt>
  1567. <dd>
  1568. <span class="param-type">boolean</span>
  1569. </dd>
  1570. </dl>
  1571. <h4 class="name" id="isJavaScript"><span class="type-signature"></span>isJavaScript<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1572. <dl class="details">
  1573. <dt class="tag-source">Source:</dt>
  1574. <dd class="tag-source"><ul class="dummy"><li>
  1575. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line737">line 737</a>
  1576. </li></ul></dd>
  1577. </dl>
  1578. <h5>Returns:</h5>
  1579. <div class="param-desc">
  1580. true if this note is JavaScript (code or attachment)
  1581. </div>
  1582. <dl>
  1583. <dt>
  1584. Type
  1585. </dt>
  1586. <dd>
  1587. <span class="param-type">boolean</span>
  1588. </dd>
  1589. </dl>
  1590. <h4 class="name" id="isJson"><span class="type-signature"></span>isJson<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1591. <dl class="details">
  1592. <dt class="tag-source">Source:</dt>
  1593. <dd class="tag-source"><ul class="dummy"><li>
  1594. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line109">line 109</a>
  1595. </li></ul></dd>
  1596. </dl>
  1597. <h5>Returns:</h5>
  1598. <dl>
  1599. <dt>
  1600. Type
  1601. </dt>
  1602. <dd>
  1603. <span class="param-type">boolean</span>
  1604. </dd>
  1605. </dl>
  1606. </article>
  1607. </section>
  1608. </div>
  1609. <nav>
  1610. <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Attribute.html">Attribute</a></li><li><a href="Branch.html">Branch</a></li><li><a href="FrontendScriptApi.html">FrontendScriptApi</a></li><li><a href="NoteComplement.html">NoteComplement</a></li><li><a href="NoteShort.html">NoteShort</a></li></ul><h3>Global</h3><ul><li><a href="global.html#doRenderBody">doRenderBody</a></li></ul>
  1611. </nav>
  1612. <br class="clear">
  1613. <footer>
  1614. Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a>
  1615. </footer>
  1616. <script> prettyPrint(); </script>
  1617. <script src="scripts/linenumber.js"> </script>
  1618. </body>
  1619. </html>