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.space; //w ww.j av a 2 s. c o m import com.atteo.jello.Record; public interface SpaceManager { void commit(); void create(); short freeSpaceOnPage(int id); boolean isBlockUsed(int id, short block); boolean isPageUsed(int id); boolean load(); void setBlockUsed(int id, short block, boolean used); void setPageUsed(int id, boolean used); void setRecordUsed(Record record, boolean used); long totalFreeSpace(); void update(); }