Branch.html 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>JSDoc: Class: Branch</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: Branch</h1>
  17. <section>
  18. <header>
  19. <h2><span class="attribs"><span class="type-signature"></span></span>Branch<span class="signature">()</span><span class="type-signature"></span></h2>
  20. <div class="class-description">Branch represents note's placement in the tree - it's essentially pair of noteId and parentNoteId.
  21. Each note can have multiple (at least one) branches, meaning it can be placed into multiple places in the tree.</div>
  22. </header>
  23. <article>
  24. <div class="container-overview">
  25. <h2>Constructor</h2>
  26. <h4 class="name" id="Branch"><span class="type-signature"></span>new Branch<span class="signature">()</span><span class="type-signature"></span></h4>
  27. <h5 class="subsection-title">Properties:</h5>
  28. <table class="props">
  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>branchId</code></td>
  39. <td class="type">
  40. <span class="param-type">string</span>
  41. </td>
  42. <td class="description last">primary key</td>
  43. </tr>
  44. <tr>
  45. <td class="name"><code>noteId</code></td>
  46. <td class="type">
  47. <span class="param-type">string</span>
  48. </td>
  49. <td class="description last"></td>
  50. </tr>
  51. <tr>
  52. <td class="name"><code>parentNoteId</code></td>
  53. <td class="type">
  54. <span class="param-type">string</span>
  55. </td>
  56. <td class="description last"></td>
  57. </tr>
  58. <tr>
  59. <td class="name"><code>notePosition</code></td>
  60. <td class="type">
  61. <span class="param-type">int</span>
  62. </td>
  63. <td class="description last"></td>
  64. </tr>
  65. <tr>
  66. <td class="name"><code>prefix</code></td>
  67. <td class="type">
  68. <span class="param-type">string</span>
  69. </td>
  70. <td class="description last"></td>
  71. </tr>
  72. <tr>
  73. <td class="name"><code>isExpanded</code></td>
  74. <td class="type">
  75. <span class="param-type">boolean</span>
  76. </td>
  77. <td class="description last"></td>
  78. </tr>
  79. <tr>
  80. <td class="name"><code>isDeleted</code></td>
  81. <td class="type">
  82. <span class="param-type">boolean</span>
  83. </td>
  84. <td class="description last"></td>
  85. </tr>
  86. <tr>
  87. <td class="name"><code>deleteId</code></td>
  88. <td class="type">
  89. <span class="param-type">string</span>
  90. |
  91. <span class="param-type">null</span>
  92. </td>
  93. <td class="description last">ID identifying delete transaction</td>
  94. </tr>
  95. <tr>
  96. <td class="name"><code>utcDateModified</code></td>
  97. <td class="type">
  98. <span class="param-type">string</span>
  99. </td>
  100. <td class="description last"></td>
  101. </tr>
  102. <tr>
  103. <td class="name"><code>utcDateCreated</code></td>
  104. <td class="type">
  105. <span class="param-type">string</span>
  106. </td>
  107. <td class="description last"></td>
  108. </tr>
  109. </tbody>
  110. </table>
  111. <dl class="details">
  112. <dt class="tag-source">Source:</dt>
  113. <dd class="tag-source"><ul class="dummy"><li>
  114. <a href="entities_branch.js.html">entities/branch.js</a>, <a href="entities_branch.js.html#line25">line 25</a>
  115. </li></ul></dd>
  116. </dl>
  117. </div>
  118. <h3 class="subsection-title">Extends</h3>
  119. <ul>
  120. <li><a href="Entity.html">Entity</a></li>
  121. </ul>
  122. <h3 class="subsection-title">Methods</h3>
  123. <h4 class="name" id="getNote"><span class="type-signature">(async) </span>getNote<span class="signature">()</span><span class="type-signature"> &rarr; {Promise.&lt;(<a href="Note.html">Note</a>|null)>}</span></h4>
  124. <dl class="details">
  125. <dt class="tag-source">Source:</dt>
  126. <dd class="tag-source"><ul class="dummy"><li>
  127. <a href="entities_branch.js.html">entities/branch.js</a>, <a href="entities_branch.js.html#line32">line 32</a>
  128. </li></ul></dd>
  129. </dl>
  130. <h5>Returns:</h5>
  131. <dl>
  132. <dt>
  133. Type
  134. </dt>
  135. <dd>
  136. <span class="param-type">Promise.&lt;(<a href="Note.html">Note</a>|null)></span>
  137. </dd>
  138. </dl>
  139. <h4 class="name" id="getParentNote"><span class="type-signature">(async) </span>getParentNote<span class="signature">()</span><span class="type-signature"> &rarr; {Promise.&lt;(<a href="Note.html">Note</a>|null)>}</span></h4>
  140. <dl class="details">
  141. <dt class="tag-source">Source:</dt>
  142. <dd class="tag-source"><ul class="dummy"><li>
  143. <a href="entities_branch.js.html">entities/branch.js</a>, <a href="entities_branch.js.html#line37">line 37</a>
  144. </li></ul></dd>
  145. </dl>
  146. <h5>Returns:</h5>
  147. <dl>
  148. <dt>
  149. Type
  150. </dt>
  151. <dd>
  152. <span class="param-type">Promise.&lt;(<a href="Note.html">Note</a>|null)></span>
  153. </dd>
  154. </dl>
  155. </article>
  156. </section>
  157. </div>
  158. <nav>
  159. <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="ApiToken.html">ApiToken</a></li><li><a href="Attribute.html">Attribute</a></li><li><a href="BackendScriptApi.html">BackendScriptApi</a></li><li><a href="Branch.html">Branch</a></li><li><a href="Entity.html">Entity</a></li><li><a href="Note.html">Note</a></li><li><a href="NoteRevision.html">NoteRevision</a></li><li><a href="Option.html">Option</a></li><li><a href="RecentNote.html">RecentNote</a></li></ul><h3><a href="global.html">Global</a></h3>
  160. </nav>
  161. <br class="clear">
  162. <footer>
  163. Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.4</a>
  164. </footer>
  165. <script> prettyPrint(); </script>
  166. <script src="scripts/linenumber.js"> </script>
  167. </body>
  168. </html>