Remove TODO file
[remote/remote-gui.git] / src / motecontrol / protocols / MsgUint8.java
blob87d1644cd9f1c28d51142ba59499dfbca1254b82
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 MsgUint8 extends MsgPrimitive {
18 public MsgUint8() {
19 super(1);
22 public MsgUint8(short value) {
23 super(1);
24 this.setValue(value);
27 public short getValue() {
28 return (short)value.get(0);
31 public void setValue(short value) {
32 this.value.put(0,(byte)value);