/**@class android.webkit.PluginList @extends java.lang.Object A simple list of initialized plugins. This list gets populated when the plugins are initialized (at browser startup, at the moment). @hide @deprecated This interface was intended to be used by Gears. Since Gears was deprecated, so is this class. */ var PluginList = { /**Returns the list of plugins as a java.util.List. @hide @deprecated This interface was intended to be used by Gears. Since Gears was deprecated, so is this class. */ getList : function( ) {}, /**Adds a plugin to the list. @hide @deprecated This interface was intended to be used by Gears. Since Gears was deprecated, so is this class. */ addPlugin : function( ) {}, /**Removes a plugin from the list. @hide @deprecated This interface was intended to be used by Gears. Since Gears was deprecated, so is this class. */ removePlugin : function( ) {}, /**Clears the plugin list. @hide @deprecated This interface was intended to be used by Gears. Since Gears was deprecated, so is this class. */ clear : function( ) {}, /**Dispatches the click event to the appropriate plugin. @hide @deprecated This interface was intended to be used by Gears. Since Gears was deprecated, so is this class. */ pluginClicked : function( ) {}, };