Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.net.SocketImpl

Uses of SocketImpl in java.net
 

Subclasses of SocketImpl in java.net
(package private)  class PlainSocketImpl
          The standard GCJ socket implementation.
(package private)  class ZSocketImpl
          This class is the main entry point to the compression layer.
 

Fields in java.net declared as SocketImpl
(package private)  SocketImpl Socket.impl
          The implementation object to which calls are redirected
private  SocketImpl ServerSocket.impl
          This is the SocketImp object to which most instance methods in this class are redirected
 

Methods in java.net that return SocketImpl
 SocketImpl ZSocketImplFactory.createSocketImpl()
          This method creates an instance of our compressed socket implementation.
 SocketImpl SocketImplFactory.createSocketImpl()
          This method returns an instance of the SocketImpl object
private  SocketImpl Socket.getImpl()
           
(package private)  SocketImpl ServerSocket.getImpl()
           
 

Methods in java.net with parameters of type SocketImpl
protected abstract  void SocketImpl.accept(SocketImpl s)
          Accepts a connection on this socket.
protected  void PlainSocketImpl.accept(SocketImpl s)
           
 

Constructors in java.net with parameters of type SocketImpl
Socket(SocketImpl impl)
          Initializes a new instance of Socket object without connecting to a remote host.
ServerSocket(SocketImpl impl)