diff options
| author | 2010-01-13 10:29:19 -0800 | |
|---|---|---|
| committer | 2010-01-13 10:29:19 -0800 | |
| commit | 53f1c3486800c797708fa211d300f07c6de34514 (patch) | |
| tree | ae21a51e19cb4711deb3c9946292e5131732688f | |
| parent | b9c56e39689e650afcebed4da38ad79c7b6cfcdf (diff) | |
constants for search
| -rw-r--r-- | core/java/android/provider/Telephony.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index 4860cbded3b8..747ae30a4e05 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -1638,6 +1638,13 @@ public final class Telephony { */ public static final String LAST_TRY = "last_try"; } + + public static final class WordsTable { + public static final String ID = "_id"; + public static final String SOURCE_ROW_ID = "source_id"; + public static final String TABLE_ID = "table_to_use"; + public static final String INDEXED_TEXT = "index_text"; + } } public static final class Carriers implements BaseColumns { |