public class

PluginList

extends Object
java.lang.Object
   ↳ android.webkit.PluginList

Class Overview

A simple list of initialized plugins. This list gets populated when the plugins are initialized (at browser startup, at the moment).

Summary

Public Constructors
PluginList()
Public constructor.
Public Methods
synchronized void addPlugin(Plugin plugin)
Adds a plugin to the list.
synchronized void clear()
Clears the plugin list.
synchronized List getList()
Returns the list of plugins as a java.util.List.
synchronized void pluginClicked(Context context, int position)
Dispatches the click event to the appropriate plugin.
synchronized void removePlugin(Plugin plugin)
Removes a plugin from the list.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public PluginList ()

Public constructor. Initializes the list of plugins.

Public Methods

public synchronized void addPlugin (Plugin plugin)

Adds a plugin to the list.

public synchronized void clear ()

Clears the plugin list.

public synchronized List getList ()

Returns the list of plugins as a java.util.List.

public synchronized void pluginClicked (Context context, int position)

Dispatches the click event to the appropriate plugin.

public synchronized void removePlugin (Plugin plugin)

Removes a plugin from the list.