Constants.java
上传用户:xmjingguan
上传日期:2009-07-06
资源大小:2054k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. /***  * Excerpted from "Hello, Android!",  * published by The Pragmatic Bookshelf.  * Copyrights apply to this code. It may not be used to create training material,   * courses, books, articles, and the like. Contact us if you are in doubt.  * We make no guarantees that this code is fit for any purpose.   * Visit http://www.pragmaticprogrammer.com/titles/eband for more book information. ***/ package org.example.events;
  2. import android.net.Uri;
  3. // ...
  4. import android.provider.BaseColumns;
  5. public interface Constants extends BaseColumns {
  6.    public static final String TABLE_NAME = "events";
  7.    
  8.    public static final String AUTHORITY = "org.example.events";
  9.    public static final Uri CONTENT_URI = Uri.parse("content://"
  10.          + AUTHORITY + "/" + TABLE_NAME);
  11.    
  12.    // Columns in the Events database
  13.    public static final String TIME = "time";
  14.    public static final String TITLE = "title";
  15. }