/** @param currentBookmark the currentBookmark to set */
 public void setCurrentBookmark(IBookmark bookmark) {
   if (!bookmark.equals(currentBookmark)) {
     currentBookmark = bookmark;
     // notify everything that is listening for a strategy change
     this.notifyListeners(new BoundaryListener.Event(this));
   }
 }