public CmdList.Builder SetList(int index, CmdItem value) { ThrowHelper.ThrowIfNull(value, "value"); this.PrepareBuilder(); this.result.list_[index] = value; return(this); }
public NewInitResponse.Builder SetCmdList(int index, CmdItem value) { ThrowHelper.ThrowIfNull(value, "value"); this.PrepareBuilder(); this.result.cmdList_[index] = value; return(this); }
public CmdList.Builder AddList(CmdItem value) { ThrowHelper.ThrowIfNull(value, "value"); this.PrepareBuilder(); this.result.list_.Add(value); return(this); }
public NewInitResponse.Builder AddCmdList(CmdItem value) { ThrowHelper.ThrowIfNull(value, "value"); this.PrepareBuilder(); this.result.cmdList_.Add(value); return(this); }