Exemplo n.º 1
0
    public void encode(ByteBuffer bytes, int pos) {

      if (bytes.array() == null) {
        return;
      }

      if (bytes.order() != ByteOrder.LITTLE_ENDIAN) {
        bytes.order(ByteOrder.LITTLE_ENDIAN);
      }

      m_RejectEventRequestRec.encode(bytes, pos);
      pos += m_RejectEventRequestRec.getSize();
    }