summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDirk Dougherty <ddougherty@google.com>2010-01-07 12:37:15 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2010-01-07 12:37:15 -0800
commit1c819a5e3e7ba7499589e798a5f971263cf3c65b (patch)
tree138e002d29570b6cf12008054052a277178d4d89 /core
parent9f7f7cad0b1fd7b096d65faf4b2352204403257e (diff)
parent5f6002ec5f52ed164b591cf4b267fe771a81731f (diff)
downloadframeworks_base-1c819a5e3e7ba7499589e798a5f971263cf3c65b.zip
frameworks_base-1c819a5e3e7ba7499589e798a5f971263cf3c65b.tar.gz
frameworks_base-1c819a5e3e7ba7499589e798a5f971263cf3c65b.tar.bz2
am 5f6002ec: am d71c2aa1: Merge "SDK doc change: add "Optimizing Judiciously" excerpt to best practices. Clean up blockquote usage in other files." into eclair
Merge commit '5f6002ec5f52ed164b591cf4b267fe771a81731f' * commit '5f6002ec5f52ed164b591cf4b267fe771a81731f': 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 ac8bf91..69874c6 100644
--- a/core/java/android/provider/ContactsContract.java
+++ b/core/java/android/provider/ContactsContract.java
@@ -53,49 +53,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 {