예제 #1
0
  /** Write the booleans that this object uses to a BooleanStream */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataByteArrayOutputStream dataOut)
      throws IOException {

    BaseCommand info = (BaseCommand) o;

    super.looseMarshal(wireFormat, o, dataOut);
    dataOut.writeInt(info.getCommandId());
    dataOut.writeBoolean(info.isResponseRequired());
  }