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 w w. j av a 2 s .c o m*/ public interface NextFitHistogram { public static int NO_WITNESS = -1; public static int NO_PAGE = -2; public short getClassSize(); public int getWitness(short freeSpace); public void update(int id, short previousFreeSpace, short freeSpace); }