moteIds = new ArrayList();
}
public void read(DataInput is) throws Exception
{
MsgUint16 count = new MsgUint16();
MsgUint32 moteId;
clear();
count.read(is);
for (int i=0; i<count.getValue(); i++)
{
moteId = new MsgUint32();
moteId.read(is);
this.addMoteId(moteId);
}