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

 Non-standard class for creating an inbound UNIX-domain socket
 in the Linux abstract namespace.
*/
var LocalServerSocket = {

/**Obtains the socket's local address
@return {Object {android.net.LocalSocketAddress}} local address
*/
getLocalSocketAddress : function(  ) {},

/**Accepts a new connection to the socket. Blocks until a new
 connection arrives.
@return {Object {android.net.LocalSocket}} a socket representing the new connection.
@throws IOException
*/
accept : function(  ) {},

/**Returns file descriptor or null if not yet open/already closed
@return {Object {java.io.FileDescriptor}} fd or null
*/
getFileDescriptor : function(  ) {},

/**Closes server socket.
@throws IOException
*/
close : function(  ) {},


};