home *** CD-ROM | disk | FTP | other *** search
/ Internet Gallery / INTERGAL.bin / intergal / prgs / idv21 / data.z / SocketImpl.pre < prev    next >
Text File  |  1995-10-08  |  1KB  |  55 lines

  1. import java.net.*;
  2. import java.io.*;
  3.  
  4. public class \Name\ extends java.net.SocketImpl
  5.    {
  6.    public \Name\ () 
  7.       {
  8.       super ();
  9.       }
  10.    protected void create(boolean stream) throws IOException
  11.       {
  12.       //Add your code here
  13.       }
  14.    protected void connect(String host, int port) throws IOException
  15.       {
  16.       //Add your code here
  17.       }
  18.    protected void connect(InetAddress address, int port) throws IOException
  19.       {
  20.       //Add your code here
  21.       }
  22.    protected void bind(InetAddress host, int port) throws IOException
  23.       {
  24.       //Add your code here
  25.       }
  26.    protected void listen(int count) throws IOException
  27.       {
  28.       //Add your code here
  29.       }
  30.    protected void accept(SocketImpl s) throws IOException
  31.       {
  32.       //Add your code here
  33.       }
  34.    protected InputStream getInputStream() throws IOException
  35.       {
  36.       //Add your code here
  37.       return null;
  38.       }
  39.    protected OutputStream getOutputStream() throws IOException
  40.       {
  41.       //Add your code here
  42.       return null;
  43.       }
  44.    protected int available() throws IOException
  45.       {
  46.       int AResult = 0;
  47.       //Add your code here
  48.       return AResult;
  49.       }
  50.    protected void close() throws IOException
  51.       {
  52.       //Add your code here
  53.       }
  54.    }
  55.