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; // w w w . j a v a2 s.c o m import com.google.inject.Provider; public class PageSizeProvider implements Provider<Short> { private short pageSize = -1; static { System.loadLibrary("PageSizeProvider"); } public Short get() { if (pageSize == -1) pageSize = getPageSize(); return pageSize; } native private short getPageSize(); }