示例#1
0
  /**
   * Returns if we're at the start of the book, i.e. displaying the title page.
   *
   * @return
   */
  public boolean isAtStart() {

    if (spine == null) {
      return true;
    }

    return spine.getPosition() == 0 && strategy.isAtStart();
  }