01 
02 /**
03  * Title:        Advanced Network Client Sample<p>
04  * Description:  <p>
05  * Copyright:    Copyright (C) 2009 Alexey Veremenko<p>
06  * Company:      <p>
07  @author Alexey Veremenko
08  @version 1.0
09  */
10 package networking.client;
11 
12 /**
13  * IConnectInfo - interface for providing connect information
14  */
15 public interface IConnectInfo
16 {
17     /**
18      * Get connection host
19      */
20     String getHost();
21 
22     /**
23      * Get connection port
24      */
25     int getPort();
26 }
Java2html