Back to project page Jello.
The source code is released under:
Apache License
If you think the Android project Jello listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.atteo.jello.store; /*from ww w .j a v a 2s. c o m*/ public interface PagedFile { public static int PAGE_ADD_FAILED = -1; int addPages(int count); void close(); boolean create(); boolean exists(); long getFileLength(); int getPageCount(); boolean isReadOnly(); int open(); void readPage(Page page); void remove(); void removePages(int count); void syncAll(); void syncPages(int startPageId, int count); void writePage(Page page); }