Android Open Source - LSStorage L S Object






From Project

Back to project page LSStorage.

License

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.

Java Source Code

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";

}




Java Source Code List

com.mhemmings.lsstorage.Column.java
com.mhemmings.lsstorage.LSController.java
com.mhemmings.lsstorage.LSDatabase.java
com.mhemmings.lsstorage.LSObject.java
com.mhemmings.lsstorage.LSTable.java