View Javadoc

1   package uba.db.client.model;
2   
3   import java.io.IOException;
4   
5   /***
6    * Inicio del client.
7    * 
8    * @version $Revision 1.0$
9    */
10  public class ClientSession {
11  	/***
12  	 * Clase main.
13  	 * 
14  	 * @param args
15  	 *            Argumentos del main.
16  	 * @throws IOException
17  	 *             Error de sockets.
18  	 */
19  	public static void main(String[] args) throws IOException {
20  		(new ClientManager()).connect();
21  	}
22  }