view 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
line wrap: on
line source

package alice.test.topology.share;

import org.msgpack.annotation.Message;

@Message
public class DataInfo {
	public long setTime = 0;
	public int a = 0;
	public int b = 1;
	
	public DataInfo(){}
	
	public DataInfo(long t){
		setTime = t;
	}
	
	public void setTime(long t){
		setTime = t;
	}
	
	public long getTime(){
		return setTime;
	}
}