Mercurial > hg > RemoteEditor > REPSessionManager
annotate rep/ConnectionEvent.java @ 140:01062be677e9
*** empty log message ***
author | kono |
---|---|
date | Wed, 27 Aug 2008 20:23:39 +0900 |
parents | 02fa9a68d9a2 |
children | a097b1d619a1 |
rev | line source |
---|---|
2 | 1 package rep; |
2 | |
3 public class ConnectionEvent { | |
4 | |
5 private String host; | |
6 | |
7 public ConnectionEvent(String host) { | |
8 // TODO Auto-generated constructor stub | |
9 this.host = host; | |
10 } | |
11 | |
12 public String getHost() { | |
13 // TODO Auto-generated method stub | |
14 return host; | |
15 } | |
16 | |
17 } |