/**@class android.net.DhcpResults
@extends android.net.StaticIpConfiguration

 A simple object for retrieving the results of a DHCP request.
 Optimized (attempted) for that jni interface
 TODO - remove when DhcpInfo is deprecated.  Move the remaining api to LinkProperties.
 @hide
*/
var DhcpResults = {

/***/
serverAddress : "null",
/**Vendor specific information (from RFC 2132). */
vendorInfo : "null",
/***/
leaseDuration : "null",
/**Implement the Parcelable interface */
CREATOR : "null",
/**Updates the DHCP fields that need to be retained from
 original DHCP request if the current renewal shows them
 being empty.
*/
updateFromDhcpRequest : function(  ) {},

/**Test if this DHCP lease includes vendor hint that network link is
 metered, and sensitive to heavy data transfers.
*/
hasMeteredHint : function(  ) {},

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

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

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

/**Implement the Parcelable interface
*/
writeToParcel : function(  ) {},

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

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

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

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

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

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

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


};