summaryrefslogtreecommitdiffstats
path: root/core/java/android/app/IntentService.java
diff options
context:
space:
mode:
authorWu-cheng Li <wuchengli@google.com>2010-04-07 13:52:37 +0800
committerWu-cheng Li <wuchengli@google.com>2010-04-07 13:54:49 +0800
commitcae57d6205a8ebc8599ff89629307ecb8cabb3b8 (patch)
tree0ca2c894916af65d65521a5152ad6230f02e74ec /core/java/android/app/IntentService.java
parent9807d6a5b7d27f438d0bd30389c5930e3fe389d8 (diff)
downloadframeworks_base-cae57d6205a8ebc8599ff89629307ecb8cabb3b8.zip
frameworks_base-cae57d6205a8ebc8599ff89629307ecb8cabb3b8.tar.gz
frameworks_base-cae57d6205a8ebc8599ff89629307ecb8cabb3b8.tar.bz2
Fix SDK build.
Change-Id: I2d816f8e765678fa1dc07c1f50cef51026e66a10
Diffstat (limited to 'core/java/android/app/IntentService.java')
-rw-r--r--core/java/android/app/IntentService.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/java/android/app/IntentService.java b/core/java/android/app/IntentService.java
index 50d7133..7c2d3a0 100644
--- a/core/java/android/app/IntentService.java
+++ b/core/java/android/app/IntentService.java
@@ -26,9 +26,9 @@ import android.os.Message;
/**
* IntentService is a base class for {@link Service}s that handle asynchronous
* requests (expressed as {@link Intent}s) on demand. Clients send requests
- * through {@link Context#startService(Intent)} calls; the service is started as
- * needed, handles each Intent in turn using a worker thread, and stops itself
- * when it runs out of work.
+ * through {@link android.content.Context#startService(Intent)} calls; the
+ * service is started as needed, handles each Intent in turn using a worker
+ * thread, and stops itself when it runs out of work.
*
* <p>This "work queue processor" pattern is commonly used to offload tasks
* from an application's main thread. The IntentService class exists to
@@ -136,7 +136,8 @@ public abstract class IntentService extends Service {
* So, if this code takes a long time, it will hold up other requests to
* the same IntentService, but it will not hold up anything else.
*
- * @param Intent The value passed to {@link Context#startService(Intent)}.
+ * @param intent The value passed to {@link
+ * android.content.Context#startService(Intent)}.
*/
protected abstract void onHandleIntent(Intent intent);
}