Back to project page LSStorage.
The source code is released under:
MIT License
If you think the Android project LSStorage 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.mhemmings.lsstorage; /*from ww w .ja v a 2s . c o m*/ /** * An LSObject is what you store in LSStorage. Extend this class however you wish * with variables, getters, setters etc. Ultimately, LSObjects are fairly * stupid. The mappings between these and tables are done in {@link LSTable} * */ public abstract class LSObject { /** * Added by default. Needed by some Android adapters that make use of * cursors */ public final static String _ID = "_id"; }