/**@class android.net.MailTo
@extends java.lang.Object


 MailTo URL parser

 This class parses a mailto scheme URL and then can be queried for
 the parsed parameters. This implements RFC 2368.

*/
var MailTo = {

/***/
MAILTO_SCHEME : "mailto:",
/**Test to see if the given string is a mailto URL
@param {String} url string to be tested
@return {Boolean} true if the string is a mailto URL
*/
isMailTo : function(  ) {},

/**Parse and decode a mailto scheme string. This parser implements
 RFC 2368. The returned object can be queried for the parsed parameters.
@param {String} url String containing a mailto URL
@return {Object {android.net.MailTo}} MailTo object
@exception ParseException if the scheme is not a mailto URL
*/
parse : function(  ) {},

/**Retrieve the To address line from the parsed mailto URL. This could be
 several email address that are comma-space delimited.
 If no To line was specified, then null is return
@return {String} comma delimited email addresses or null
*/
getTo : function(  ) {},

/**Retrieve the CC address line from the parsed mailto URL. This could be
 several email address that are comma-space delimited.
 If no CC line was specified, then null is return
@return {String} comma delimited email addresses or null
*/
getCc : function(  ) {},

/**Retrieve the subject line from the parsed mailto URL.
 If no subject line was specified, then null is return
@return {String} subject or null
*/
getSubject : function(  ) {},

/**Retrieve the body line from the parsed mailto URL.
 If no body line was specified, then null is return
@return {String} body or null
*/
getBody : function(  ) {},

/**Retrieve all the parsed email headers from the mailto URL
@return {Object {java.util.Map}} map containing all parsed values
*/
getHeaders : function(  ) {},

/**
*/
toString : function(  ) {},


};