/**
   * Description of the Method
   *
   * @param is Description of the Parameter
   * @param clientVersionNo Description of the Parameter
   * @exception java.io.IOException Description of the Exception
   */
  public void fromStream(java.io.DataInput is, int clientVersionNo) throws java.io.IOException {
    super.fromStream(is, clientVersionNo);

    m_appContext = readUTF(is);

    int size = is.readInt();

    for (int i = 0; i < size; i++) {
      DmiSourceContext context = new DmiSourceContext();

      context.fromStream(is, clientVersionNo);
      m_vecOfContextsCarriedFwd.add(context);
    }

    if (clientVersionNo <= 3000) return;

    int count = is.readInt();

    for (int i = 0; i < count; i++) {
      String key = readUTF(is);
      String value = readUTF(is);

      m_hashCarryFwdProps.put(key, value);
    }
  }