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

 {@hide}

 Web Address Parser

 This is called WebAddress, rather than URL or URI, because it
 attempts to parse the stuff that a user will actually type into a
 browser address widget.

 Unlike java.net.uri, this parser will not choke on URIs missing
 schemes.  It will only throw a ParseException if the input is
 really hosed.

 If given an https scheme but no port, fills in port

*/
var WebAddress = {

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

/**{@hide}
*/
setScheme : function(  ) {},

/**{@hide}
*/
getScheme : function(  ) {},

/**{@hide}
*/
setHost : function(  ) {},

/**{@hide}
*/
getHost : function(  ) {},

/**{@hide}
*/
setPort : function(  ) {},

/**{@hide}
*/
getPort : function(  ) {},

/**{@hide}
*/
setPath : function(  ) {},

/**{@hide}
*/
getPath : function(  ) {},

/**{@hide}
*/
setAuthInfo : function(  ) {},

/**{@hide}
*/
getAuthInfo : function(  ) {},


};