/**@class android.webkit.PluginData
@extends java.lang.Object

 This class encapsulates the content generated by a plugin.  The
 data itself is meant to be loaded into webkit via the
 PluginContentLoader class, which needs to be able to construct an
 HTTP response. For this, it needs a stream with the response body,
 the length of the body, the response headers, and the response
 status code. The PluginData class is the container for all these
 parts.

 @hide
 @deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
var PluginData = {

/**Returns the input stream that contains the plugin content.
@return {Object {java.io.InputStream}} An InputStream instance with the plugin content.
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
getInputStream : function(  ) {},

/**Returns the length of the plugin content.
@return {Number} the length of the plugin content.
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
getContentLength : function(  ) {},

/**Returns the HTTP response headers associated with the plugin
 content.
@return {Object {java.util.Map}} A Map<String, String[]> containing all headers. The
 mapping is 'lowercase header name' to ['unmodified header
 name', header value].
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
getHeaders : function(  ) {},

/**Returns the HTTP status code for the response.
@return {Number} The HTTP statue code, e.g 200.
@hide 
@deprecated This class was intended to be used by Gears. Since Gears was
 deprecated, so is this class.
*/
getStatusCode : function(  ) {},


};