public class

Plugin

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

This class is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

Class Overview

Represents a plugin (Java equivalent of the PluginPackageAndroid C++ class in libs/WebKitLib/WebKit/WebCore/plugins/android/)

Summary

Nested Classes
interface Plugin.PreferencesClickHandler  
Public Constructors
Plugin(String name, String path, String fileName, String description)
This constructor is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
Public Methods
void dispatchClickEvent(Context context)
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
String getDescription()
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
String getFileName()
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
String getName()
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
String getPath()
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
void setClickHandler(Plugin.PreferencesClickHandler handler)
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
void setDescription(String description)
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
void setFileName(String fileName)
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
void setName(String name)
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
void setPath(String path)
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
String toString()
This method is deprecated. This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Plugin (String name, String path, String fileName, String description)

Since: API Level 1

This constructor is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

Public Methods

public void dispatchClickEvent (Context context)

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

Invokes the click handler for this plugin.

public String getDescription ()

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public String getFileName ()

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public String getName ()

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public String getPath ()

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public void setClickHandler (Plugin.PreferencesClickHandler handler)

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public void setDescription (String description)

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public void setFileName (String fileName)

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public void setName (String name)

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public void setPath (String path)

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

public String toString ()

Since: API Level 1

This method is deprecated.
This interface was intended to be used by Gears. Since Gears was deprecated, so is this class.

Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:

   getClass().getName() + '@' + Integer.toHexString(hashCode())

See Writing a useful toString method if you intend implementing your own toString method.

Returns
  • a printable representation of this object.