diff options
| author | 2013-07-24 20:47:19 -0700 | |
|---|---|---|
| committer | 2013-07-24 20:47:19 -0700 | |
| commit | 8cf4e13e466bf7a9dc9a3bee73c8a74f3fc4bb85 (patch) | |
| tree | b89ff610b39f26790e693684b45187372471b3a8 | |
| parent | f3f610b0d597c6d9876fa51b2bef9bb152e4ae50 (diff) | |
Fix docs build.
Change-Id: I5bf25f6f1681a66f63798a9a0d5112b2a32f747b
| -rw-r--r-- | core/java/android/content/SyncRequest.java | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/core/java/android/content/SyncRequest.java b/core/java/android/content/SyncRequest.java index 336371e85eb0..bd3b92d0e305 100644 --- a/core/java/android/content/SyncRequest.java +++ b/core/java/android/content/SyncRequest.java @@ -357,13 +357,13 @@ public class SyncRequest implements Parcelable { * </pre> * * N.B.: Periodic syncs are not allowed to have any of - * {@link #SYNC_EXTRAS_DO_NOT_RETRY}, - * {@link #SYNC_EXTRAS_IGNORE_BACKOFF}, - * {@link #SYNC_EXTRAS_IGNORE_SETTINGS}, - * {@link #SYNC_EXTRAS_INITIALIZE}, - * {@link #SYNC_EXTRAS_FORCE}, - * {@link #SYNC_EXTRAS_EXPEDITED}, - * {@link #SYNC_EXTRAS_MANUAL} + * {@link ContentResolver#SYNC_EXTRAS_DO_NOT_RETRY}, + * {@link ContentResolver#SYNC_EXTRAS_IGNORE_BACKOFF}, + * {@link ContentResolver#SYNC_EXTRAS_IGNORE_SETTINGS}, + * {@link ContentResolver#SYNC_EXTRAS_INITIALIZE}, + * {@link ContentResolver#SYNC_EXTRAS_FORCE}, + * {@link ContentResolver#SYNC_EXTRAS_EXPEDITED}, + * {@link ContentResolver#SYNC_EXTRAS_MANUAL} * set to true. If any are supplied then an {@link IllegalArgumentException} will * be thrown. * @@ -495,7 +495,7 @@ public class SyncRequest implements Parcelable { } /** - * Convenience function for setting {@link ContentResolver.SYNC_EXTRAS_DO_NOT_RETRY}. A + * Convenience function for setting {@link ContentResolver#SYNC_EXTRAS_DO_NOT_RETRY}. A * one-off sync operation that fails will be retried at a later date unless this is * set to false. Default is true. Not valid for periodic sync and will throw an * IllegalArgumentException in Builder.build(). @@ -508,7 +508,7 @@ public class SyncRequest implements Parcelable { } /** - * {@link ContentResolver.SYNC_EXTRAS_IGNORE_SETTINGS}. Not valid for + * {@link ContentResolver#SYNC_EXTRAS_IGNORE_SETTINGS}. Not valid for * periodic sync and will throw an IllegalArgumentException in * Builder.build(). Default false. */ @@ -518,7 +518,7 @@ public class SyncRequest implements Parcelable { } /** - * Convenience function for setting {@link ContentResolver.SYNC_EXTRAS_IGNORE_BACKOFF}. + * Convenience function for setting {@link ContentResolver#SYNC_EXTRAS_IGNORE_BACKOFF}. * * @param ignoreBackoff */ @@ -528,7 +528,7 @@ public class SyncRequest implements Parcelable { } /** - * {@link ContentResolver.SYNC_EXTRAS_MANUAL}. Default false. + * {@link ContentResolver#SYNC_EXTRAS_MANUAL}. Default false. */ public Builder setManual(boolean isManual) { mIsManual = isManual; @@ -536,7 +536,7 @@ public class SyncRequest implements Parcelable { } /** - * {@link ContentResolver.SYNC_EXTRAS_} Default false. + * {@link ContentResolver#SYNC_EXTRAS_EXPEDITED} Default false. */ public Builder setExpedited(boolean expedited) { mExpedited = expedited; @@ -545,7 +545,7 @@ public class SyncRequest implements Parcelable { /** * Priority of this request among all requests from the calling app. - * Range of [-2,2] similar to {@link android.app.Notification.priority}. + * Range of [-2,2] similar to {@link android.app.Notification#priority}. */ public Builder setPriority(int priority) { if (priority < -2 || priority > 2) { |