KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > comanche > Request


1 package comanche;
2 import java.io.*;
3 import java.net.*;
4
5 public class Request {
6   public Socket s;
7   public Reader in;
8   public PrintStream out;
9   public String JavaDoc url;
10   public Request (Socket s) { this.s = s; }
11 }
12
Popular Tags