summaryrefslogtreecommitdiffstats
path: root/core/java/android/webkit/PluginList.java
diff options
context:
space:
mode:
authorDianne Hackborn <hackbod@google.com>2009-08-21 15:14:02 -0700
committerDianne Hackborn <hackbod@google.com>2009-08-24 17:37:32 -0700
commit4a51c20ce607c74914f90fd897f04080121ac13b (patch)
tree067caf43aa752a8952061d7d8e03fb1aeb77c96e /core/java/android/webkit/PluginList.java
parentcf3a08307d1599eaa91d7cc4e7c601e5fa13037f (diff)
downloadframeworks_base-4a51c20ce607c74914f90fd897f04080121ac13b.zip
frameworks_base-4a51c20ce607c74914f90fd897f04080121ac13b.tar.gz
frameworks_base-4a51c20ce607c74914f90fd897f04080121ac13b.tar.bz2
I am getting tired of the java doc warnings, so fix them.
Change-Id: I2205eebae419eaf4a0992c9f5b7cd807eb843fe1
Diffstat (limited to 'core/java/android/webkit/PluginList.java')
-rw-r--r--core/java/android/webkit/PluginList.java20
1 files changed, 13 insertions, 7 deletions
diff --git a/core/java/android/webkit/PluginList.java b/core/java/android/webkit/PluginList.java
index 5b65b9a..a61b07b 100644
--- a/core/java/android/webkit/PluginList.java
+++ b/core/java/android/webkit/PluginList.java
@@ -25,7 +25,7 @@ import java.util.List;
* populated when the plugins are initialized (at
* browser startup, at the moment).
*
- * @deprecated This interface was inteded to be used by Gears. Since Gears was
+ * @deprecated This interface was intended to be used by Gears. Since Gears was
* deprecated, so is this class.
*/
@Deprecated
@@ -35,7 +35,8 @@ public class PluginList {
/**
* Public constructor. Initializes the list of plugins.
*
- * @deprecated
+ * @deprecated This interface was intended to be used by Gears. Since Gears was
+ * deprecated, so is this class.
*/
@Deprecated
public PluginList() {
@@ -45,7 +46,8 @@ public class PluginList {
/**
* Returns the list of plugins as a java.util.List.
*
- * @deprecated
+ * @deprecated This interface was intended to be used by Gears. Since Gears was
+ * deprecated, so is this class.
*/
@Deprecated
public synchronized List getList() {
@@ -55,7 +57,8 @@ public class PluginList {
/**
* Adds a plugin to the list.
*
- * @deprecated
+ * @deprecated This interface was intended to be used by Gears. Since Gears was
+ * deprecated, so is this class.
*/
@Deprecated
public synchronized void addPlugin(Plugin plugin) {
@@ -67,7 +70,8 @@ public class PluginList {
/**
* Removes a plugin from the list.
*
- * @deprecated
+ * @deprecated This interface was intended to be used by Gears. Since Gears was
+ * deprecated, so is this class.
*/
@Deprecated
public synchronized void removePlugin(Plugin plugin) {
@@ -80,7 +84,8 @@ public class PluginList {
/**
* Clears the plugin list.
*
- * @deprecated
+ * @deprecated This interface was intended to be used by Gears. Since Gears was
+ * deprecated, so is this class.
*/
@Deprecated
public synchronized void clear() {
@@ -90,7 +95,8 @@ public class PluginList {
/**
* Dispatches the click event to the appropriate plugin.
*
- * @deprecated
+ * @deprecated This interface was intended to be used by Gears. Since Gears was
+ * deprecated, so is this class.
*/
@Deprecated
public synchronized void pluginClicked(Context context, int position) {