コード例 #1
0
    public void decode(ByteBuffer bytes, int pos) {

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

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