public ConfirmControlRec(ConfirmControlRec value) { /// Initiliaze the protected variables m_parent = null; m_ResponseCode = 0; /// Copy the values m_ResponseCode = value.m_ResponseCode; }
public bool isEqual(ConfirmControlRec value) { if (this.getResponseCode() != value.getResponseCode()) { return(false); } return(true); }
public Body(Body value) { /// Initiliaze the protected variables m_ConfirmControlRec = new ConfirmControlRec(); m_ConfirmControlRec.setParent(this); /// Copy the values m_ConfirmControlRec = value.getConfirmControlRec(); m_ConfirmControlRec.setParent(this); /// This code is currently not supported }
public ConfirmControl.Body.ConfirmControlRec setConfirmControlRec(ConfirmControlRec value) { m_ResponseCode = value.m_ResponseCode; return this; }
public bool notEquals(ConfirmControlRec value) { return !this.isEqual(value); }
public bool isEqual(ConfirmControlRec value) { if (this.getResponseCode() != value.getResponseCode()) { return false; } return true; }
public void setConfirmControlRec(ConfirmControlRec value) { m_ConfirmControlRec = value; setParentPresenceVector(); }
public ConfirmControl.Body setBody(Body value) { m_ConfirmControlRec = value.getConfirmControlRec(); m_ConfirmControlRec.setParent(this); /// This code is currently not supported return this; }
public Body() { m_ConfirmControlRec = new ConfirmControlRec(); m_ConfirmControlRec.setParent(this); }
public bool notEquals(ConfirmControlRec value) { return(!this.isEqual(value)); }
public ConfirmControl.Body.ConfirmControlRec setConfirmControlRec(ConfirmControlRec value) { m_ResponseCode = value.m_ResponseCode; return(this); }