Beispiel #1
0
 /**
  * find the parent note of this note
  *
  * @return the parent note or null if this is a top level note.
  */
 public Note getParent() {
   String pid = get(FLD_PARENT);
   if (pid == null) {
     return null;
   }
   Note p = Note.load(pid);
   return p;
 }