Ejemplo n.º 1
0
 private CurrentPage getBookPage(Book book) {
   if (book.equals(currentMyNotePage.getCurrentDocument())) {
     return currentMyNotePage;
   } else {
     return getBookPage(book.getBookCategory());
   }
 }
Ejemplo n.º 2
0
 public void showMyNote(Key verse) {
   setCurrentDocumentAndKey(currentMyNotePage.getCurrentDocument(), verse);
 }
Ejemplo n.º 3
0
 /**
  * My Note is different to all other pages. It has no documents etc but I attempt to make it look
  * a bit like a Commentary page
  *
  * @param showing
  */
 public void showMyNote() {
   showMyNote(currentMyNotePage.getKey());
 }