@Override public void fromData(DataInput in) throws IOException, ClassNotFoundException { super.fromData(in); msgToCancel = in.readInt(); }
@Override public void toData(DataOutput out) throws IOException { super.toData(out); out.writeInt(msgToCancel); }