public ReportTimoutRec(ReportTimoutRec value) { /// Initiliaze the protected variables m_parent = null; m_Timeout = 0; /// Copy the values m_Timeout = value.m_Timeout; }
public bool isEqual(ReportTimoutRec value) { if (this.getTimeout() != value.getTimeout()) { return(false); } return(true); }
public Body(Body value) { /// Initiliaze the protected variables m_ReportTimoutRec = new ReportTimoutRec(); m_ReportTimoutRec.setParent(this); /// Copy the values m_ReportTimoutRec = value.getReportTimoutRec(); m_ReportTimoutRec.setParent(this); /// This code is currently not supported }
public ReportTimeout.Body.ReportTimoutRec setReportTimoutRec(ReportTimoutRec value) { m_Timeout = value.m_Timeout; return this; }
public bool notEquals(ReportTimoutRec value) { return !this.isEqual(value); }
public bool isEqual(ReportTimoutRec value) { if (this.getTimeout() != value.getTimeout()) { return false; } return true; }
public void setReportTimoutRec(ReportTimoutRec value) { m_ReportTimoutRec = value; setParentPresenceVector(); }
public ReportTimeout.Body setBody(Body value) { m_ReportTimoutRec = value.getReportTimoutRec(); m_ReportTimoutRec.setParent(this); /// This code is currently not supported return this; }
public Body() { m_ReportTimoutRec = new ReportTimoutRec(); m_ReportTimoutRec.setParent(this); }
public bool notEquals(ReportTimoutRec value) { return(!this.isEqual(value)); }
public ReportTimeout.Body.ReportTimoutRec setReportTimoutRec(ReportTimoutRec value) { m_Timeout = value.m_Timeout; return(this); }