Mercurial > hg > Members > tatsuki > Alice
comparison src/alice/topology/node/IncomingConnectionInfo.java @ 27:f54dcbebde3a
topology manager work!
author | kazz <kazz@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 17 Jan 2012 03:52:39 +0900 |
parents | 9c6b9e032338 |
children | 98ab26e09a98 |
comparison
equal
deleted
inserted
replaced
26:9c6b9e032338 | 27:f54dcbebde3a |
---|---|
21 this.clazz = clazz; | 21 this.clazz = clazz; |
22 } | 22 } |
23 | 23 |
24 @Override | 24 @Override |
25 public void run() { | 25 public void run() { |
26 if (this.hostInfo.val.isNilValue()) { | 26 if (this.hostInfo.val == null) { |
27 System.out.println("Configuration finished"); | 27 System.out.println("Configuration finished"); |
28 if (clazz == null) | 28 if (clazz == null) |
29 return; | 29 return; |
30 try { | 30 try { |
31 clazz.newInstance().execute(); | 31 clazz.newInstance().execute(); |