NoteShort.html 69 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070
  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#line475">line 475</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#line216">line 216</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#line497">line 497</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="tag-source">Source:</dt>
  356. <dd class="tag-source"><ul class="dummy"><li>
  357. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line139">line 139</a>
  358. </li></ul></dd>
  359. </dl>
  360. <h5>Returns:</h5>
  361. <dl>
  362. <dt>
  363. Type
  364. </dt>
  365. <dd>
  366. <span class="param-type">Array.&lt;<a href="Branch.html">Branch</a>></span>
  367. </dd>
  368. </dl>
  369. <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>
  370. <dl class="details">
  371. <dt class="tag-source">Source:</dt>
  372. <dd class="tag-source"><ul class="dummy"><li>
  373. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line134">line 134</a>
  374. </li></ul></dd>
  375. </dl>
  376. <h5>Returns:</h5>
  377. <dl>
  378. <dt>
  379. Type
  380. </dt>
  381. <dd>
  382. <span class="param-type">Array.&lt;string></span>
  383. </dd>
  384. </dl>
  385. <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>
  386. <dl class="details">
  387. <dt class="tag-source">Source:</dt>
  388. <dd class="tag-source"><ul class="dummy"><li>
  389. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line151">line 151</a>
  390. </li></ul></dd>
  391. </dl>
  392. <h5>Returns:</h5>
  393. <dl>
  394. <dt>
  395. Type
  396. </dt>
  397. <dd>
  398. <span class="param-type">Array.&lt;<a href="Branch.html">Branch</a>></span>
  399. </dd>
  400. </dl>
  401. <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>
  402. <dl class="details">
  403. <dt class="tag-source">Source:</dt>
  404. <dd class="tag-source"><ul class="dummy"><li>
  405. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line189">line 189</a>
  406. </li></ul></dd>
  407. </dl>
  408. <h5>Returns:</h5>
  409. <dl>
  410. <dt>
  411. Type
  412. </dt>
  413. <dd>
  414. <span class="param-type">Array.&lt;string></span>
  415. </dd>
  416. </dl>
  417. <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>
  418. <dl class="details">
  419. <dt class="tag-source">Source:</dt>
  420. <dd class="tag-source"><ul class="dummy"><li>
  421. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line194">line 194</a>
  422. </li></ul></dd>
  423. </dl>
  424. <h5>Returns:</h5>
  425. <dl>
  426. <dt>
  427. Type
  428. </dt>
  429. <dd>
  430. <span class="param-type">Promise.&lt;Array.&lt;<a href="NoteShort.html">NoteShort</a>>></span>
  431. </dd>
  432. </dl>
  433. <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>
  434. <h5>Parameters:</h5>
  435. <table class="params">
  436. <thead>
  437. <tr>
  438. <th>Name</th>
  439. <th>Type</th>
  440. <th class="last">Description</th>
  441. </tr>
  442. </thead>
  443. <tbody>
  444. <tr>
  445. <td class="name"><code>name</code></td>
  446. <td class="type">
  447. <span class="param-type">string</span>
  448. </td>
  449. <td class="description last">label name</td>
  450. </tr>
  451. </tbody>
  452. </table>
  453. <dl class="details">
  454. <dt class="tag-source">Source:</dt>
  455. <dd class="tag-source"><ul class="dummy"><li>
  456. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line537">line 537</a>
  457. </li></ul></dd>
  458. </dl>
  459. <h5>Returns:</h5>
  460. <div class="param-desc">
  461. label if it exists, null otherwise
  462. </div>
  463. <dl>
  464. <dt>
  465. Type
  466. </dt>
  467. <dd>
  468. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  469. </dd>
  470. </dl>
  471. <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>
  472. <h5>Parameters:</h5>
  473. <table class="params">
  474. <thead>
  475. <tr>
  476. <th>Name</th>
  477. <th>Type</th>
  478. <th>Attributes</th>
  479. <th class="last">Description</th>
  480. </tr>
  481. </thead>
  482. <tbody>
  483. <tr>
  484. <td class="name"><code>name</code></td>
  485. <td class="type">
  486. <span class="param-type">string</span>
  487. </td>
  488. <td class="attributes">
  489. &lt;optional><br>
  490. </td>
  491. <td class="description last">label name to filter</td>
  492. </tr>
  493. </tbody>
  494. </table>
  495. <dl class="details">
  496. <dt class="tag-source">Source:</dt>
  497. <dd class="tag-source"><ul class="dummy"><li>
  498. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line364">line 364</a>
  499. </li></ul></dd>
  500. </dl>
  501. <h5>Returns:</h5>
  502. <div class="param-desc">
  503. all note's labels (attributes with type label), including inherited ones
  504. </div>
  505. <dl>
  506. <dt>
  507. Type
  508. </dt>
  509. <dd>
  510. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  511. </dd>
  512. </dl>
  513. <h4 class="name" id="getLabelValue"><span class="type-signature"></span>getLabelValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  514. <h5>Parameters:</h5>
  515. <table class="params">
  516. <thead>
  517. <tr>
  518. <th>Name</th>
  519. <th>Type</th>
  520. <th class="last">Description</th>
  521. </tr>
  522. </thead>
  523. <tbody>
  524. <tr>
  525. <td class="name"><code>name</code></td>
  526. <td class="type">
  527. <span class="param-type">string</span>
  528. </td>
  529. <td class="description last">label name</td>
  530. </tr>
  531. </tbody>
  532. </table>
  533. <dl class="details">
  534. <dt class="tag-source">Source:</dt>
  535. <dd class="tag-source"><ul class="dummy"><li>
  536. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line561">line 561</a>
  537. </li></ul></dd>
  538. </dl>
  539. <h5>Returns:</h5>
  540. <div class="param-desc">
  541. label value if label exists, null otherwise
  542. </div>
  543. <dl>
  544. <dt>
  545. Type
  546. </dt>
  547. <dd>
  548. <span class="param-type">string</span>
  549. </dd>
  550. </dl>
  551. <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>
  552. <div class="description">
  553. Return note complement which is most importantly note's content
  554. </div>
  555. <dl class="details">
  556. <dt class="tag-source">Source:</dt>
  557. <dd class="tag-source"><ul class="dummy"><li>
  558. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line683">line 683</a>
  559. </li></ul></dd>
  560. </dl>
  561. <h5>Returns:</h5>
  562. <dl>
  563. <dt>
  564. Type
  565. </dt>
  566. <dd>
  567. <span class="param-type">Promise.&lt;<a href="NoteComplement.html">NoteComplement</a>></span>
  568. </dd>
  569. </dl>
  570. <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>
  571. <h5>Parameters:</h5>
  572. <table class="params">
  573. <thead>
  574. <tr>
  575. <th>Name</th>
  576. <th>Type</th>
  577. <th class="last">Description</th>
  578. </tr>
  579. </thead>
  580. <tbody>
  581. <tr>
  582. <td class="name"><code>type</code></td>
  583. <td class="type">
  584. <span class="param-type">string</span>
  585. </td>
  586. <td class="description last">attribute type (label, relation, etc.)</td>
  587. </tr>
  588. <tr>
  589. <td class="name"><code>name</code></td>
  590. <td class="type">
  591. <span class="param-type">string</span>
  592. </td>
  593. <td class="description last">attribute name</td>
  594. </tr>
  595. </tbody>
  596. </table>
  597. <dl class="details">
  598. <dt class="tag-source">Source:</dt>
  599. <dd class="tag-source"><ul class="dummy"><li>
  600. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line464">line 464</a>
  601. </li></ul></dd>
  602. </dl>
  603. <h5>Returns:</h5>
  604. <div class="param-desc">
  605. 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.
  606. </div>
  607. <dl>
  608. <dt>
  609. Type
  610. </dt>
  611. <dd>
  612. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  613. </dd>
  614. </dl>
  615. <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>
  616. <h5>Parameters:</h5>
  617. <table class="params">
  618. <thead>
  619. <tr>
  620. <th>Name</th>
  621. <th>Type</th>
  622. <th>Attributes</th>
  623. <th class="last">Description</th>
  624. </tr>
  625. </thead>
  626. <tbody>
  627. <tr>
  628. <td class="name"><code>type</code></td>
  629. <td class="type">
  630. <span class="param-type">string</span>
  631. </td>
  632. <td class="attributes">
  633. &lt;optional><br>
  634. </td>
  635. <td class="description last">(optional) attribute type to filter</td>
  636. </tr>
  637. <tr>
  638. <td class="name"><code>name</code></td>
  639. <td class="type">
  640. <span class="param-type">string</span>
  641. </td>
  642. <td class="attributes">
  643. &lt;optional><br>
  644. </td>
  645. <td class="description last">(optional) attribute name to filter</td>
  646. </tr>
  647. </tbody>
  648. </table>
  649. <dl class="details">
  650. <dt class="tag-source">Source:</dt>
  651. <dd class="tag-source"><ul class="dummy"><li>
  652. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line203">line 203</a>
  653. </li></ul></dd>
  654. </dl>
  655. <h5>Returns:</h5>
  656. <div class="param-desc">
  657. all note's attributes, including inherited ones
  658. </div>
  659. <dl>
  660. <dt>
  661. Type
  662. </dt>
  663. <dd>
  664. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  665. </dd>
  666. </dl>
  667. <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>
  668. <h5>Parameters:</h5>
  669. <table class="params">
  670. <thead>
  671. <tr>
  672. <th>Name</th>
  673. <th>Type</th>
  674. <th class="last">Description</th>
  675. </tr>
  676. </thead>
  677. <tbody>
  678. <tr>
  679. <td class="name"><code>type</code></td>
  680. <td class="type">
  681. <span class="param-type">string</span>
  682. </td>
  683. <td class="description last">attribute type (label, relation, etc.)</td>
  684. </tr>
  685. <tr>
  686. <td class="name"><code>name</code></td>
  687. <td class="type">
  688. <span class="param-type">string</span>
  689. </td>
  690. <td class="description last">attribute name</td>
  691. </tr>
  692. </tbody>
  693. </table>
  694. <dl class="details">
  695. <dt class="tag-source">Source:</dt>
  696. <dd class="tag-source"><ul class="dummy"><li>
  697. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line486">line 486</a>
  698. </li></ul></dd>
  699. </dl>
  700. <h5>Returns:</h5>
  701. <div class="param-desc">
  702. attribute value of given type and name or null if no such attribute exists.
  703. </div>
  704. <dl>
  705. <dt>
  706. Type
  707. </dt>
  708. <dd>
  709. <span class="param-type">string</span>
  710. </dd>
  711. </dl>
  712. <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>
  713. <h5>Parameters:</h5>
  714. <table class="params">
  715. <thead>
  716. <tr>
  717. <th>Name</th>
  718. <th>Type</th>
  719. <th class="last">Description</th>
  720. </tr>
  721. </thead>
  722. <tbody>
  723. <tr>
  724. <td class="name"><code>name</code></td>
  725. <td class="type">
  726. <span class="param-type">string</span>
  727. </td>
  728. <td class="description last">label name</td>
  729. </tr>
  730. </tbody>
  731. </table>
  732. <dl class="details">
  733. <dt class="tag-source">Source:</dt>
  734. <dd class="tag-source"><ul class="dummy"><li>
  735. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line531">line 531</a>
  736. </li></ul></dd>
  737. </dl>
  738. <h5>Returns:</h5>
  739. <div class="param-desc">
  740. label if it exists, null otherwise
  741. </div>
  742. <dl>
  743. <dt>
  744. Type
  745. </dt>
  746. <dd>
  747. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  748. </dd>
  749. </dl>
  750. <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>
  751. <h5>Parameters:</h5>
  752. <table class="params">
  753. <thead>
  754. <tr>
  755. <th>Name</th>
  756. <th>Type</th>
  757. <th>Attributes</th>
  758. <th class="last">Description</th>
  759. </tr>
  760. </thead>
  761. <tbody>
  762. <tr>
  763. <td class="name"><code>name</code></td>
  764. <td class="type">
  765. <span class="param-type">string</span>
  766. </td>
  767. <td class="attributes">
  768. &lt;optional><br>
  769. </td>
  770. <td class="description last">label name to filter</td>
  771. </tr>
  772. </tbody>
  773. </table>
  774. <dl class="details">
  775. <dt class="tag-source">Source:</dt>
  776. <dd class="tag-source"><ul class="dummy"><li>
  777. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line356">line 356</a>
  778. </li></ul></dd>
  779. </dl>
  780. <h5>Returns:</h5>
  781. <div class="param-desc">
  782. all note's labels (attributes with type label), including inherited ones
  783. </div>
  784. <dl>
  785. <dt>
  786. Type
  787. </dt>
  788. <dd>
  789. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  790. </dd>
  791. </dl>
  792. <h4 class="name" id="getOwnedLabelValue"><span class="type-signature"></span>getOwnedLabelValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  793. <h5>Parameters:</h5>
  794. <table class="params">
  795. <thead>
  796. <tr>
  797. <th>Name</th>
  798. <th>Type</th>
  799. <th class="last">Description</th>
  800. </tr>
  801. </thead>
  802. <tbody>
  803. <tr>
  804. <td class="name"><code>name</code></td>
  805. <td class="type">
  806. <span class="param-type">string</span>
  807. </td>
  808. <td class="description last">label name</td>
  809. </tr>
  810. </tbody>
  811. </table>
  812. <dl class="details">
  813. <dt class="tag-source">Source:</dt>
  814. <dd class="tag-source"><ul class="dummy"><li>
  815. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line555">line 555</a>
  816. </li></ul></dd>
  817. </dl>
  818. <h5>Returns:</h5>
  819. <div class="param-desc">
  820. label value if label exists, null otherwise
  821. </div>
  822. <dl>
  823. <dt>
  824. Type
  825. </dt>
  826. <dd>
  827. <span class="param-type">string</span>
  828. </dd>
  829. </dl>
  830. <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>
  831. <h5>Parameters:</h5>
  832. <table class="params">
  833. <thead>
  834. <tr>
  835. <th>Name</th>
  836. <th>Type</th>
  837. <th class="last">Description</th>
  838. </tr>
  839. </thead>
  840. <tbody>
  841. <tr>
  842. <td class="name"><code>name</code></td>
  843. <td class="type">
  844. <span class="param-type">string</span>
  845. </td>
  846. <td class="description last">relation name</td>
  847. </tr>
  848. </tbody>
  849. </table>
  850. <dl class="details">
  851. <dt class="tag-source">Source:</dt>
  852. <dd class="tag-source"><ul class="dummy"><li>
  853. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line543">line 543</a>
  854. </li></ul></dd>
  855. </dl>
  856. <h5>Returns:</h5>
  857. <div class="param-desc">
  858. relation if it exists, null otherwise
  859. </div>
  860. <dl>
  861. <dt>
  862. Type
  863. </dt>
  864. <dd>
  865. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  866. </dd>
  867. </dl>
  868. <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>
  869. <h5>Parameters:</h5>
  870. <table class="params">
  871. <thead>
  872. <tr>
  873. <th>Name</th>
  874. <th>Type</th>
  875. <th>Attributes</th>
  876. <th class="last">Description</th>
  877. </tr>
  878. </thead>
  879. <tbody>
  880. <tr>
  881. <td class="name"><code>name</code></td>
  882. <td class="type">
  883. <span class="param-type">string</span>
  884. </td>
  885. <td class="attributes">
  886. &lt;optional><br>
  887. </td>
  888. <td class="description last">relation name to filter</td>
  889. </tr>
  890. </tbody>
  891. </table>
  892. <dl class="details">
  893. <dt class="tag-source">Source:</dt>
  894. <dd class="tag-source"><ul class="dummy"><li>
  895. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line429">line 429</a>
  896. </li></ul></dd>
  897. </dl>
  898. <h5>Returns:</h5>
  899. <div class="param-desc">
  900. all note's relations (attributes with type relation), including inherited ones
  901. </div>
  902. <dl>
  903. <dt>
  904. Type
  905. </dt>
  906. <dd>
  907. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  908. </dd>
  909. </dl>
  910. <h4 class="name" id="getOwnedRelationValue"><span class="type-signature"></span>getOwnedRelationValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  911. <h5>Parameters:</h5>
  912. <table class="params">
  913. <thead>
  914. <tr>
  915. <th>Name</th>
  916. <th>Type</th>
  917. <th class="last">Description</th>
  918. </tr>
  919. </thead>
  920. <tbody>
  921. <tr>
  922. <td class="name"><code>name</code></td>
  923. <td class="type">
  924. <span class="param-type">string</span>
  925. </td>
  926. <td class="description last">relation name</td>
  927. </tr>
  928. </tbody>
  929. </table>
  930. <dl class="details">
  931. <dt class="tag-source">Source:</dt>
  932. <dd class="tag-source"><ul class="dummy"><li>
  933. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line567">line 567</a>
  934. </li></ul></dd>
  935. </dl>
  936. <h5>Returns:</h5>
  937. <div class="param-desc">
  938. relation value if relation exists, null otherwise
  939. </div>
  940. <dl>
  941. <dt>
  942. Type
  943. </dt>
  944. <dd>
  945. <span class="param-type">string</span>
  946. </dd>
  947. </dl>
  948. <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>
  949. <dl class="details">
  950. <dt class="tag-source">Source:</dt>
  951. <dd class="tag-source"><ul class="dummy"><li>
  952. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line159">line 159</a>
  953. </li></ul></dd>
  954. </dl>
  955. <h5>Returns:</h5>
  956. <dl>
  957. <dt>
  958. Type
  959. </dt>
  960. <dd>
  961. <span class="param-type">Array.&lt;string></span>
  962. </dd>
  963. </dl>
  964. <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>
  965. <dl class="details">
  966. <dt class="tag-source">Source:</dt>
  967. <dd class="tag-source"><ul class="dummy"><li>
  968. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line164">line 164</a>
  969. </li></ul></dd>
  970. </dl>
  971. <h5>Returns:</h5>
  972. <dl>
  973. <dt>
  974. Type
  975. </dt>
  976. <dd>
  977. <span class="param-type">Array.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  978. </dd>
  979. </dl>
  980. <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>
  981. <h5>Parameters:</h5>
  982. <table class="params">
  983. <thead>
  984. <tr>
  985. <th>Name</th>
  986. <th>Type</th>
  987. <th class="last">Description</th>
  988. </tr>
  989. </thead>
  990. <tbody>
  991. <tr>
  992. <td class="name"><code>name</code></td>
  993. <td class="type">
  994. <span class="param-type">string</span>
  995. </td>
  996. <td class="description last">relation name</td>
  997. </tr>
  998. </tbody>
  999. </table>
  1000. <dl class="details">
  1001. <dt class="tag-source">Source:</dt>
  1002. <dd class="tag-source"><ul class="dummy"><li>
  1003. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line549">line 549</a>
  1004. </li></ul></dd>
  1005. </dl>
  1006. <h5>Returns:</h5>
  1007. <div class="param-desc">
  1008. relation if it exists, null otherwise
  1009. </div>
  1010. <dl>
  1011. <dt>
  1012. Type
  1013. </dt>
  1014. <dd>
  1015. <span class="param-type"><a href="Attribute.html">Attribute</a></span>
  1016. </dd>
  1017. </dl>
  1018. <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>
  1019. <h5>Parameters:</h5>
  1020. <table class="params">
  1021. <thead>
  1022. <tr>
  1023. <th>Name</th>
  1024. <th>Type</th>
  1025. <th>Attributes</th>
  1026. <th class="last">Description</th>
  1027. </tr>
  1028. </thead>
  1029. <tbody>
  1030. <tr>
  1031. <td class="name"><code>name</code></td>
  1032. <td class="type">
  1033. <span class="param-type">string</span>
  1034. </td>
  1035. <td class="attributes">
  1036. &lt;optional><br>
  1037. </td>
  1038. <td class="description last">relation name to filter</td>
  1039. </tr>
  1040. </tbody>
  1041. </table>
  1042. <dl class="details">
  1043. <dt class="tag-source">Source:</dt>
  1044. <dd class="tag-source"><ul class="dummy"><li>
  1045. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line437">line 437</a>
  1046. </li></ul></dd>
  1047. </dl>
  1048. <h5>Returns:</h5>
  1049. <div class="param-desc">
  1050. all note's relations (attributes with type relation), including inherited ones
  1051. </div>
  1052. <dl>
  1053. <dt>
  1054. Type
  1055. </dt>
  1056. <dd>
  1057. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  1058. </dd>
  1059. </dl>
  1060. <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>
  1061. <h5>Parameters:</h5>
  1062. <table class="params">
  1063. <thead>
  1064. <tr>
  1065. <th>Name</th>
  1066. <th>Type</th>
  1067. <th class="last">Description</th>
  1068. </tr>
  1069. </thead>
  1070. <tbody>
  1071. <tr>
  1072. <td class="name"><code>name</code></td>
  1073. <td class="type">
  1074. <span class="param-type">string</span>
  1075. </td>
  1076. <td class="description last"></td>
  1077. </tr>
  1078. </tbody>
  1079. </table>
  1080. <dl class="details">
  1081. <dt class="tag-source">Source:</dt>
  1082. <dd class="tag-source"><ul class="dummy"><li>
  1083. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line579">line 579</a>
  1084. </li></ul></dd>
  1085. </dl>
  1086. <h5>Returns:</h5>
  1087. <div class="param-desc">
  1088. target note of the relation or null (if target is empty or note was not found)
  1089. </div>
  1090. <dl>
  1091. <dt>
  1092. Type
  1093. </dt>
  1094. <dd>
  1095. <span class="param-type">Promise.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  1096. |
  1097. <span class="param-type">null</span>
  1098. </dd>
  1099. </dl>
  1100. <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>
  1101. <h5>Parameters:</h5>
  1102. <table class="params">
  1103. <thead>
  1104. <tr>
  1105. <th>Name</th>
  1106. <th>Type</th>
  1107. <th>Attributes</th>
  1108. <th class="last">Description</th>
  1109. </tr>
  1110. </thead>
  1111. <tbody>
  1112. <tr>
  1113. <td class="name"><code>name</code></td>
  1114. <td class="type">
  1115. <span class="param-type">string</span>
  1116. </td>
  1117. <td class="attributes">
  1118. &lt;optional><br>
  1119. </td>
  1120. <td class="description last">relation name to filter</td>
  1121. </tr>
  1122. </tbody>
  1123. </table>
  1124. <dl class="details">
  1125. <dt class="tag-source">Source:</dt>
  1126. <dd class="tag-source"><ul class="dummy"><li>
  1127. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line589">line 589</a>
  1128. </li></ul></dd>
  1129. </dl>
  1130. <h5>Returns:</h5>
  1131. <dl>
  1132. <dt>
  1133. Type
  1134. </dt>
  1135. <dd>
  1136. <span class="param-type">Promise.&lt;Array.&lt;<a href="NoteShort.html">NoteShort</a>>></span>
  1137. </dd>
  1138. </dl>
  1139. <h4 class="name" id="getRelationValue"><span class="type-signature"></span>getRelationValue<span class="signature">(name)</span><span class="type-signature"> &rarr; {string}</span></h4>
  1140. <h5>Parameters:</h5>
  1141. <table class="params">
  1142. <thead>
  1143. <tr>
  1144. <th>Name</th>
  1145. <th>Type</th>
  1146. <th class="last">Description</th>
  1147. </tr>
  1148. </thead>
  1149. <tbody>
  1150. <tr>
  1151. <td class="name"><code>name</code></td>
  1152. <td class="type">
  1153. <span class="param-type">string</span>
  1154. </td>
  1155. <td class="description last">relation name</td>
  1156. </tr>
  1157. </tbody>
  1158. </table>
  1159. <dl class="details">
  1160. <dt class="tag-source">Source:</dt>
  1161. <dd class="tag-source"><ul class="dummy"><li>
  1162. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line573">line 573</a>
  1163. </li></ul></dd>
  1164. </dl>
  1165. <h5>Returns:</h5>
  1166. <div class="param-desc">
  1167. relation value if relation exists, null otherwise
  1168. </div>
  1169. <dl>
  1170. <dt>
  1171. Type
  1172. </dt>
  1173. <dd>
  1174. <span class="param-type">string</span>
  1175. </dd>
  1176. </dl>
  1177. <h4 class="name" id="getScriptEnv"><span class="type-signature"></span>getScriptEnv<span class="signature">()</span><span class="type-signature"> &rarr; {string|null}</span></h4>
  1178. <dl class="details">
  1179. <dt class="tag-source">Source:</dt>
  1180. <dd class="tag-source"><ul class="dummy"><li>
  1181. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line727">line 727</a>
  1182. </li></ul></dd>
  1183. </dl>
  1184. <h5>Returns:</h5>
  1185. <div class="param-desc">
  1186. JS script environment - either "frontend" or "backend"
  1187. </div>
  1188. <dl>
  1189. <dt>
  1190. Type
  1191. </dt>
  1192. <dd>
  1193. <span class="param-type">string</span>
  1194. |
  1195. <span class="param-type">null</span>
  1196. </dd>
  1197. </dl>
  1198. <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>
  1199. <div class="description">
  1200. Get relations which target this note
  1201. </div>
  1202. <dl class="details">
  1203. <dt class="tag-source">Source:</dt>
  1204. <dd class="tag-source"><ul class="dummy"><li>
  1205. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line662">line 662</a>
  1206. </li></ul></dd>
  1207. </dl>
  1208. <h5>Returns:</h5>
  1209. <dl>
  1210. <dt>
  1211. Type
  1212. </dt>
  1213. <dd>
  1214. <span class="param-type">Array.&lt;<a href="Attribute.html">Attribute</a>></span>
  1215. </dd>
  1216. </dl>
  1217. <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>
  1218. <div class="description">
  1219. Get relations which target this note
  1220. </div>
  1221. <dl class="details">
  1222. <dt class="tag-source">Source:</dt>
  1223. <dd class="tag-source"><ul class="dummy"><li>
  1224. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line672">line 672</a>
  1225. </li></ul></dd>
  1226. </dl>
  1227. <h5>Returns:</h5>
  1228. <dl>
  1229. <dt>
  1230. Type
  1231. </dt>
  1232. <dd>
  1233. <span class="param-type">Array.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  1234. </dd>
  1235. </dl>
  1236. <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>
  1237. <dl class="details">
  1238. <dt class="tag-source">Source:</dt>
  1239. <dd class="tag-source"><ul class="dummy"><li>
  1240. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line603">line 603</a>
  1241. </li></ul></dd>
  1242. </dl>
  1243. <h5>Returns:</h5>
  1244. <dl>
  1245. <dt>
  1246. Type
  1247. </dt>
  1248. <dd>
  1249. <span class="param-type">Array.&lt;<a href="NoteShort.html">NoteShort</a>></span>
  1250. </dd>
  1251. </dl>
  1252. <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>
  1253. <h5>Parameters:</h5>
  1254. <table class="params">
  1255. <thead>
  1256. <tr>
  1257. <th>Name</th>
  1258. <th>Type</th>
  1259. <th class="last">Description</th>
  1260. </tr>
  1261. </thead>
  1262. <tbody>
  1263. <tr>
  1264. <td class="name"><code>type</code></td>
  1265. <td class="type">
  1266. <span class="param-type">string</span>
  1267. </td>
  1268. <td class="description last">attribute type (label, relation, etc.)</td>
  1269. </tr>
  1270. <tr>
  1271. <td class="name"><code>name</code></td>
  1272. <td class="type">
  1273. <span class="param-type">string</span>
  1274. </td>
  1275. <td class="description last">attribute name</td>
  1276. </tr>
  1277. </tbody>
  1278. </table>
  1279. <dl class="details">
  1280. <dt class="tag-source">Source:</dt>
  1281. <dd class="tag-source"><ul class="dummy"><li>
  1282. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line446">line 446</a>
  1283. </li></ul></dd>
  1284. </dl>
  1285. <h5>Returns:</h5>
  1286. <div class="param-desc">
  1287. true if note has an attribute with given type and name (including inherited)
  1288. </div>
  1289. <dl>
  1290. <dt>
  1291. Type
  1292. </dt>
  1293. <dd>
  1294. <span class="param-type">boolean</span>
  1295. </dd>
  1296. </dl>
  1297. <h4 class="name" id="hasChildren"><span class="type-signature"></span>hasChildren<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1298. <dl class="details">
  1299. <dt class="tag-source">Source:</dt>
  1300. <dd class="tag-source"><ul class="dummy"><li>
  1301. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line146">line 146</a>
  1302. </li></ul></dd>
  1303. </dl>
  1304. <h5>Returns:</h5>
  1305. <dl>
  1306. <dt>
  1307. Type
  1308. </dt>
  1309. <dd>
  1310. <span class="param-type">boolean</span>
  1311. </dd>
  1312. </dl>
  1313. <h4 class="name" id="hasLabel"><span class="type-signature"></span>hasLabel<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1314. <h5>Parameters:</h5>
  1315. <table class="params">
  1316. <thead>
  1317. <tr>
  1318. <th>Name</th>
  1319. <th>Type</th>
  1320. <th class="last">Description</th>
  1321. </tr>
  1322. </thead>
  1323. <tbody>
  1324. <tr>
  1325. <td class="name"><code>name</code></td>
  1326. <td class="type">
  1327. <span class="param-type">string</span>
  1328. </td>
  1329. <td class="description last">label name</td>
  1330. </tr>
  1331. </tbody>
  1332. </table>
  1333. <dl class="details">
  1334. <dt class="tag-source">Source:</dt>
  1335. <dd class="tag-source"><ul class="dummy"><li>
  1336. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line513">line 513</a>
  1337. </li></ul></dd>
  1338. </dl>
  1339. <h5>Returns:</h5>
  1340. <div class="param-desc">
  1341. true if label exists (including inherited)
  1342. </div>
  1343. <dl>
  1344. <dt>
  1345. Type
  1346. </dt>
  1347. <dd>
  1348. <span class="param-type">boolean</span>
  1349. </dd>
  1350. </dl>
  1351. <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>
  1352. <h5>Parameters:</h5>
  1353. <table class="params">
  1354. <thead>
  1355. <tr>
  1356. <th>Name</th>
  1357. <th>Type</th>
  1358. <th class="last">Description</th>
  1359. </tr>
  1360. </thead>
  1361. <tbody>
  1362. <tr>
  1363. <td class="name"><code>type</code></td>
  1364. <td class="type">
  1365. <span class="param-type">string</span>
  1366. </td>
  1367. <td class="description last">attribute type (label, relation, etc.)</td>
  1368. </tr>
  1369. <tr>
  1370. <td class="name"><code>name</code></td>
  1371. <td class="type">
  1372. <span class="param-type">string</span>
  1373. </td>
  1374. <td class="description last">attribute name</td>
  1375. </tr>
  1376. </tbody>
  1377. </table>
  1378. <dl class="details">
  1379. <dt class="tag-source">Source:</dt>
  1380. <dd class="tag-source"><ul class="dummy"><li>
  1381. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line455">line 455</a>
  1382. </li></ul></dd>
  1383. </dl>
  1384. <h5>Returns:</h5>
  1385. <div class="param-desc">
  1386. true if note has an attribute with given type and name (including inherited)
  1387. </div>
  1388. <dl>
  1389. <dt>
  1390. Type
  1391. </dt>
  1392. <dd>
  1393. <span class="param-type">boolean</span>
  1394. </dd>
  1395. </dl>
  1396. <h4 class="name" id="hasOwnedLabel"><span class="type-signature"></span>hasOwnedLabel<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1397. <h5>Parameters:</h5>
  1398. <table class="params">
  1399. <thead>
  1400. <tr>
  1401. <th>Name</th>
  1402. <th>Type</th>
  1403. <th class="last">Description</th>
  1404. </tr>
  1405. </thead>
  1406. <tbody>
  1407. <tr>
  1408. <td class="name"><code>name</code></td>
  1409. <td class="type">
  1410. <span class="param-type">string</span>
  1411. </td>
  1412. <td class="description last">label name</td>
  1413. </tr>
  1414. </tbody>
  1415. </table>
  1416. <dl class="details">
  1417. <dt class="tag-source">Source:</dt>
  1418. <dd class="tag-source"><ul class="dummy"><li>
  1419. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line507">line 507</a>
  1420. </li></ul></dd>
  1421. </dl>
  1422. <h5>Returns:</h5>
  1423. <div class="param-desc">
  1424. true if label exists (excluding inherited)
  1425. </div>
  1426. <dl>
  1427. <dt>
  1428. Type
  1429. </dt>
  1430. <dd>
  1431. <span class="param-type">boolean</span>
  1432. </dd>
  1433. </dl>
  1434. <h4 class="name" id="hasOwnedRelation"><span class="type-signature"></span>hasOwnedRelation<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1435. <h5>Parameters:</h5>
  1436. <table class="params">
  1437. <thead>
  1438. <tr>
  1439. <th>Name</th>
  1440. <th>Type</th>
  1441. <th class="last">Description</th>
  1442. </tr>
  1443. </thead>
  1444. <tbody>
  1445. <tr>
  1446. <td class="name"><code>name</code></td>
  1447. <td class="type">
  1448. <span class="param-type">string</span>
  1449. </td>
  1450. <td class="description last">relation name</td>
  1451. </tr>
  1452. </tbody>
  1453. </table>
  1454. <dl class="details">
  1455. <dt class="tag-source">Source:</dt>
  1456. <dd class="tag-source"><ul class="dummy"><li>
  1457. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line519">line 519</a>
  1458. </li></ul></dd>
  1459. </dl>
  1460. <h5>Returns:</h5>
  1461. <div class="param-desc">
  1462. true if relation exists (excluding inherited)
  1463. </div>
  1464. <dl>
  1465. <dt>
  1466. Type
  1467. </dt>
  1468. <dd>
  1469. <span class="param-type">boolean</span>
  1470. </dd>
  1471. </dl>
  1472. <h4 class="name" id="hasRelation"><span class="type-signature"></span>hasRelation<span class="signature">(name)</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1473. <h5>Parameters:</h5>
  1474. <table class="params">
  1475. <thead>
  1476. <tr>
  1477. <th>Name</th>
  1478. <th>Type</th>
  1479. <th class="last">Description</th>
  1480. </tr>
  1481. </thead>
  1482. <tbody>
  1483. <tr>
  1484. <td class="name"><code>name</code></td>
  1485. <td class="type">
  1486. <span class="param-type">string</span>
  1487. </td>
  1488. <td class="description last">relation name</td>
  1489. </tr>
  1490. </tbody>
  1491. </table>
  1492. <dl class="details">
  1493. <dt class="tag-source">Source:</dt>
  1494. <dd class="tag-source"><ul class="dummy"><li>
  1495. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line525">line 525</a>
  1496. </li></ul></dd>
  1497. </dl>
  1498. <h5>Returns:</h5>
  1499. <div class="param-desc">
  1500. true if relation exists (including inherited)
  1501. </div>
  1502. <dl>
  1503. <dt>
  1504. Type
  1505. </dt>
  1506. <dd>
  1507. <span class="param-type">boolean</span>
  1508. </dd>
  1509. </dl>
  1510. <h4 class="name" id="invalidateAttributeCache"><span class="type-signature"></span>invalidateAttributeCache<span class="signature">()</span><span class="type-signature"></span></h4>
  1511. <dl class="details">
  1512. <dt class="important tag-deprecated">Deprecated:</dt><dd><ul class="dummy"><li>NOOP</li></ul></dd>
  1513. <dt class="tag-source">Source:</dt>
  1514. <dd class="tag-source"><ul class="dummy"><li>
  1515. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line655">line 655</a>
  1516. </li></ul></dd>
  1517. </dl>
  1518. <h4 class="name" id="isHtml"><span class="type-signature"></span>isHtml<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1519. <dl class="details">
  1520. <dt class="tag-source">Source:</dt>
  1521. <dd class="tag-source"><ul class="dummy"><li>
  1522. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line722">line 722</a>
  1523. </li></ul></dd>
  1524. </dl>
  1525. <h5>Returns:</h5>
  1526. <div class="param-desc">
  1527. true if this note is HTML
  1528. </div>
  1529. <dl>
  1530. <dt>
  1531. Type
  1532. </dt>
  1533. <dd>
  1534. <span class="param-type">boolean</span>
  1535. </dd>
  1536. </dl>
  1537. <h4 class="name" id="isJavaScript"><span class="type-signature"></span>isJavaScript<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1538. <dl class="details">
  1539. <dt class="tag-source">Source:</dt>
  1540. <dd class="tag-source"><ul class="dummy"><li>
  1541. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line714">line 714</a>
  1542. </li></ul></dd>
  1543. </dl>
  1544. <h5>Returns:</h5>
  1545. <div class="param-desc">
  1546. true if this note is JavaScript (code or attachment)
  1547. </div>
  1548. <dl>
  1549. <dt>
  1550. Type
  1551. </dt>
  1552. <dd>
  1553. <span class="param-type">boolean</span>
  1554. </dd>
  1555. </dl>
  1556. <h4 class="name" id="isJson"><span class="type-signature"></span>isJson<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4>
  1557. <dl class="details">
  1558. <dt class="tag-source">Source:</dt>
  1559. <dd class="tag-source"><ul class="dummy"><li>
  1560. <a href="entities_note_short.js.html">entities/note_short.js</a>, <a href="entities_note_short.js.html#line109">line 109</a>
  1561. </li></ul></dd>
  1562. </dl>
  1563. <h5>Returns:</h5>
  1564. <dl>
  1565. <dt>
  1566. Type
  1567. </dt>
  1568. <dd>
  1569. <span class="param-type">boolean</span>
  1570. </dd>
  1571. </dl>
  1572. </article>
  1573. </section>
  1574. </div>
  1575. <nav>
  1576. <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>
  1577. </nav>
  1578. <br class="clear">
  1579. <footer>
  1580. Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a>
  1581. </footer>
  1582. <script> prettyPrint(); </script>
  1583. <script src="scripts/linenumber.js"> </script>
  1584. </body>
  1585. </html>