Remove TODO file
[remote/remote-gui.git] / src / motecontrol / protocols / MsgInt32.java
blob66a9656ee4982eb0862e29066d662a5de2e2b353
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 class MsgInt32 extends MsgPrimitive {
18 public MsgInt32() {
19 super(4);
22 public MsgInt32(int value) {
23 super(4);
24 this.setValue(value);
27 public int getValue() {
28 return (int)value.getInt(0);
31 public void setValue(int value) {
32 this.value.putInt(0,value);