/[classpath]/classpath/java/net/ServerSocket.java
ViewVC logotype

Diff of /classpath/java/net/ServerSocket.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.14 by mkoch, Tue Nov 12 07:23:38 2002 UTC revision 1.15 by mkoch, Mon Nov 18 11:26:03 2002 UTC
# Line 60  import java.nio.channels.ServerSocketCha Line 60  import java.nio.channels.ServerSocketCha
60   */   */
61  public class ServerSocket  public class ServerSocket
62  {  {
   
   // Class Variables  
   
63    /**    /**
64     * This is the user defined SocketImplFactory, if one is supplied     * This is the user defined SocketImplFactory, if one is supplied
65     */     */
66    private static SocketImplFactory factory;    private static SocketImplFactory factory;
67    
   // Instance Variables  
   
68    /**    /**
69     * This is the SocketImp object to which most instance methods in this     * This is the SocketImp object to which most instance methods in this
70     * class are redirected     * class are redirected
# Line 95  public class ServerSocket Line 90  public class ServerSocket
90        impl = factory.createSocketImpl();        impl = factory.createSocketImpl();
91      else      else
92        impl = new PlainSocketImpl();        impl = new PlainSocketImpl();
93    
94        impl.create(true);
95    }    }
96    
97    /**    /**

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26