Package at.jku.sii.sqlitereader.page

Examples of at.jku.sii.sqlitereader.page.Page


  }

  public ArrayDataInput getPageBlock(int pageNum) {
    pageNum--; // starting with 1
    assert (pageNum < this.numPages);
    Page page = this.pages.get(pageNum);
    assert (page instanceof RawDataPage); // not yet resolved
    return ((RawDataPage) page).getContent();
  }
View Full Code Here


  }

  public void resolvePage(int pageNum, Page specific) {
    pageNum--; // starting with 1
    assert (pageNum < this.numPages);
    final Page ori = this.pages.get(pageNum);
    assert (ori instanceof RawDataPage); // not yet resolved
    ((RawDataPage) ori).getContent().annotate(0, this.pageSize, "Page", specific.getClass().getSimpleName());
    this.pages.set(pageNum, specific);
  }
View Full Code Here

TOP

Related Classes of at.jku.sii.sqlitereader.page.Page

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.