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

 A class representing the IP configuration of the Ethernet network.

 @hide
*/
var EthernetManager = {

/**Get Ethernet configuration.
@return {Object {android.net.IpConfiguration}} the Ethernet Configuration, contained in {@link IpConfiguration}.
*/
getConfiguration : function(  ) {},

/**Set Ethernet configuration.
*/
setConfiguration : function(  ) {},

/**Indicates whether the system currently has one or more
 Ethernet interfaces.
*/
isAvailable : function(  ) {},

/**Adds a listener.
@param {Object {EthernetManager.Listener}} listener A {@link Listener} to add.
@throws IllegalArgumentException If the listener is null.
*/
addListener : function(  ) {},

/**Removes a listener.
@param {Object {EthernetManager.Listener}} listener A {@link Listener} to remove.
@throws IllegalArgumentException If the listener is null.
*/
removeListener : function(  ) {},


};