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; /*from www .j a v a 2 s.co m*/ import com.google.inject.Inject; import com.google.inject.name.Named; public class PageUsage { @Inject protected static @Named("freeSpaceInfoSize") short freeSpaceInfoSize; public int pageId; public int blocksUsed; public byte[] usage; PageUsage() { usage = new byte[freeSpaceInfoSize]; pageId = -1; blocksUsed = 0; } }