public void read(SDRInputStream in, SDRContext context) throws SDRException, IOException {
    /** Added by SdrGen */
    int actMember = 0;

    if (mMemberDone == actMember) {
      clientId = in.readInt(context);
      if (!context.done) return;
      mMemberDone++;
    }
    actMember++;
    if (mMemberDone == actMember) {
      exeUnitHnd = in.readInt(context);
      if (!context.done) return;
      mMemberDone++;
    }
    actMember++;
    if (mMemberDone == actMember) {
      varAccess.read(in, context);
      if (!context.done) return;
      mMemberDone++;
    }
    actMember++;
  }