Mercurial > hg > Database > Alice
annotate src/alice/test/topology/share/DataInfo.java @ 137:ed78890ed8e9 working
Share Test
author | sugi |
---|---|
date | Sun, 26 Aug 2012 18:33:13 +0900 |
parents | |
children | ae6ed9c35288 |
rev | line source |
---|---|
137 | 1 package alice.test.topology.share; |
2 | |
3 import org.msgpack.annotation.Message; | |
4 | |
5 @Message | |
6 public class DataInfo { | |
7 public long setTime = 0; | |
8 public int a = 0; | |
9 public int b = 1; | |
10 | |
11 public DataInfo(){} | |
12 | |
13 public DataInfo(long t){ | |
14 setTime = t; | |
15 } | |
16 | |
17 public void setTime(long t){ | |
18 setTime = t; | |
19 } | |
20 | |
21 public long getTime(){ | |
22 return setTime; | |
23 } | |
24 } |