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

Diff of /classpath/java/net/PlainSocketImpl.java

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

revision 1.9 by cbj, Mon Mar 25 05:12:18 2002 UTC revision 1.10 by mkoch, Tue Nov 12 07:23:38 2002 UTC
# Line 244  class PlainSocketImpl extends SocketImpl Line 244  class PlainSocketImpl extends SocketImpl
244    {    {
245      return(new SocketOutputStream(this));      return(new SocketOutputStream(this));
246    }    }
247    
248      public void connect(SocketAddress address, int timeout)
249      {
250        throw new InternalError ("PlainSocketImpl::connect not implemented");
251      }
252    
253      public void sendUrgentData(int data)
254      {
255        throw new InternalError ("PlainSocketImpl::sendUrgentData not implemented");
256      }
257    
258      public void shutdownInput()
259      {
260        throw new InternalError ("PlainSocketImpl::shutdownInput not implemented");
261      }
262    
263      public void shutdownOutput()
264      {
265        throw new InternalError ("PlainSocketImpl::shutdownOutput not implemented");
266      }
267  } // class PlainSocketImpl  } // class PlainSocketImpl

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

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