DbConstants.java :  » UnTagged » cooksmate » uk » org » aspellclark » cooksmate » db » Android Open Source

Android Open Source » UnTagged » cooksmate 
cooksmate » uk » org » aspellclark » cooksmate » db » DbConstants.java
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package uk.org.aspellclark.cooksmate.db;

import uk.org.aspellclark.common.db.AbstractDbConstants;

/**
 * 
 * @author andy
 */
public class DbConstants implements AbstractDbConstants {

  public String getDbName() {
    return "CooksMateDb";
  }

  public int getDbVersion() {
    return 1;
  }

  /* (non-Javadoc)
   * @see uk.org.aspellclark.common.db.AbstractDbConstants#runInDebugMode()
   */
  @Override
  public Boolean runInDebugMode() {
    return true;
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.