예제 #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_HeaderRec.decode(bytes, pos);
      pos += m_HeaderRec.getSize();
    }