Remove TODO file
[remote/remote-gui.git] / src / motecontrol / protocols / MsgInt64.java
blob313e19d67271ea52910ecfd56b542d102a592d20
1 /*
2 * Created on Sep 28, 2005
4 * TODO To change the template for this generated file go to
5 * Window - Preferences - Java - Code Style - Code Templates
6 */
7 package diku.distlab.motecontrolclientlib.protocols;
10 /**
11 * @author zept
13 * TODO To change the template for this generated type comment go to
14 * Window - Preferences - Java - Code Style - Code Templates
16 public class MsgInt64 extends MsgPrimitive {
18 public MsgInt64() {
19 super(8);
22 public MsgInt64(long value) {
23 super(8);
24 this.setValue(value);
27 public long getValue() {
28 return value.getLong(0);
31 public void setValue(long value) {
32 this.value.putLong(0,value);