view src/main/java/alice/test/topology/share/DataInfo.java @ 393:38021fceabef draft multicast

test commit
author tatsuki
date Tue, 17 Jun 2014 17:39:47 +0900
parents 8f71c3e6f11d
children
line wrap: on
line source

package alice.test.topology.share;

import org.msgpack.annotation.Message;

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