public void decode(ByteBuffer bytes, int pos) {

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

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