diff options
| author | Wei Huang <weih@google.com> | 2011-03-16 08:36:14 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-03-16 08:36:14 -0700 |
| commit | 55685a6965d7be3a2784bce8b6a84632f5f9908d (patch) | |
| tree | 29087f50692944f0a1b61bb035fff90481e1157b | |
| parent | 92f87fb9b5aca13cc011672c973ea60152110252 (diff) | |
| parent | 65eda063861e3f05f8b4968e58907c612a0489d1 (diff) | |
| download | frameworks_base-55685a6965d7be3a2784bce8b6a84632f5f9908d.zip frameworks_base-55685a6965d7be3a2784bce8b6a84632f5f9908d.tar.gz frameworks_base-55685a6965d7be3a2784bce8b6a84632f5f9908d.tar.bz2 | |
Merge "Add the field date_sent to keep track of the date a message was sent."
| -rw-r--r-- | core/java/android/provider/Telephony.java | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index d2d2557..6ff9f0e 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -90,12 +90,18 @@ public final class Telephony { public static final String PERSON_ID = "person"; /** - * The date the message was sent + * The date the message was received * <P>Type: INTEGER (long)</P> */ public static final String DATE = "date"; /** + * The date the message was sent + * <P>Type: INTEGER (long)</P> + */ + public static final String DATE_SENT = "date_sent"; + + /** * Has the message been read * <P>Type: INTEGER (boolean)</P> */ @@ -650,12 +656,18 @@ public final class Telephony { public static final int MESSAGE_BOX_OUTBOX = 4; /** - * The date the message was sent. + * The date the message was received. * <P>Type: INTEGER (long)</P> */ public static final String DATE = "date"; /** + * The date the message was sent. + * <P>Type: INTEGER (long)</P> + */ + public static final String DATE_SENT = "date_sent"; + + /** * The box which the message belong to, for example, MESSAGE_BOX_INBOX. * <P>Type: INTEGER</P> */ |
