summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDirk Dougherty <ddougherty@google.com>2010-01-07 12:33:48 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2010-01-07 12:33:48 -0800
commit5f6002ec5f52ed164b591cf4b267fe771a81731f (patch)
treeb61d7d2daa5d8852ba26ab78e4f1a3e7e5cfb085 /core
parent707ca41d1f93e54aa0abcf3455522ba8d4c8affb (diff)
parentd71c2aa1a33a456b631ae539fe57f8eb5615fcd5 (diff)
downloadframeworks_base-5f6002ec5f52ed164b591cf4b267fe771a81731f.zip
frameworks_base-5f6002ec5f52ed164b591cf4b267fe771a81731f.tar.gz
frameworks_base-5f6002ec5f52ed164b591cf4b267fe771a81731f.tar.bz2
am d71c2aa1: Merge "SDK doc change: add "Optimizing Judiciously" excerpt to best practices. Clean up blockquote usage in other files." into eclair
Merge commit 'd71c2aa1a33a456b631ae539fe57f8eb5615fcd5' into eclair-plus-aosp * commit 'd71c2aa1a33a456b631ae539fe57f8eb5615fcd5': SDK doc change: add "Optimizing Judiciously" excerpt to best practices. Clean up blockquote usage in other files.
Diffstat (limited to 'core')
-rw-r--r--core/java/android/provider/ContactsContract.java44
1 files changed, 22 insertions, 22 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java
index c3b0f1c..a56bb45 100644
--- a/core/java/android/provider/ContactsContract.java
+++ b/core/java/android/provider/ContactsContract.java
@@ -48,49 +48,49 @@ import java.io.InputStream;
* ContactsContract defines an extensible database of contact-related
* information. Contact information is stored in a three-tier data model:
* </p>
- * <blockquote>
- * <p>
+ * <ul>
+ * <li>
* The {@link Data} table contains all kinds of personal data: phone numbers,
* email addresses etc. The list of data kinds that can be stored in this table
* is open-ended. There is a predefined set of common kinds, but any application
* can add its own data kinds.
- * </p>
- * <p>
+ * </li>
+ * <li>
* A row in the {@link RawContacts} table represents a set of Data describing a
* person and associated with a single account.
- * </p>
- * <p>
+ * </li>
+ * <li>
* A row in the {@link Contacts} table represents an aggregate of one or more
* RawContacts presumably describing the same person.
- * </p>
- * </blockquote>
+ * </li>
+ * </ul>
* <p>
* Other tables include:
* </p>
- * <blockquote>
- * <p>
+ * <ul>
+ * <li>
* {@link Groups}, which contains information about raw contact groups - the
* current API does not support the notion of groups spanning multiple accounts.
- * </p>
- * <p>
+ * </li>
+ * <li>
* {@link StatusUpdates}, which contains social status updates including IM
* availability.
- * </p>
- * <p>
+ * </li>
+ * <li>
* {@link AggregationExceptions}, which is used for manual aggregation and
* disaggregation of raw contacts
- * </p>
- * <p>
+ * </li>
+ * <li>
* {@link Settings}, which contains visibility and sync settings for accounts
* and groups.
- * </p>
- * <p>
+ * </li>
+ * <li>
* {@link SyncState}, which contains free-form data maintained on behalf of sync
* adapters
- * </p>
- * <p>
- * {@link PhoneLookup}, which is used for quick caller-ID lookup</id>
- * </blockquote>
+ * </li>
+ * <li>
+ * {@link PhoneLookup}, which is used for quick caller-ID lookup</li>
+ * </ul>
*/
@SuppressWarnings("unused")
public final class ContactsContract {