Пример #1
0
                public ReportTimoutRec(ReportTimoutRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent  = null;
                    m_Timeout = 0;

                    /// Copy the values
                    m_Timeout = value.m_Timeout;
                }
Пример #2
0
                public bool isEqual(ReportTimoutRec value)
                {
                    if (this.getTimeout() != value.getTimeout())
                    {
                        return(false);
                    }

                    return(true);
                }
Пример #3
0
            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
            }
Пример #4
0
                public ReportTimeout.Body.ReportTimoutRec setReportTimoutRec(ReportTimoutRec value)
                {
                    m_Timeout = value.m_Timeout;

                    return this;
                }
Пример #5
0
 public bool notEquals(ReportTimoutRec value)
 {
     return !this.isEqual(value);
 }
Пример #6
0
                public bool isEqual(ReportTimoutRec value)
                {
                    if (this.getTimeout() != value.getTimeout())
                    {
                    return false;
                    }

                    return true;
                }
Пример #7
0
                public ReportTimoutRec(ReportTimoutRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_Timeout = 0;

                    /// Copy the values
                    m_Timeout = value.m_Timeout;
                }
Пример #8
0
 public void setReportTimoutRec(ReportTimoutRec value)
 {
     m_ReportTimoutRec = value;
     setParentPresenceVector();
 }
Пример #9
0
            public ReportTimeout.Body setBody(Body value)
            {
                m_ReportTimoutRec = value.getReportTimoutRec();
                m_ReportTimoutRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Пример #10
0
            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
            }
Пример #11
0
 public Body()
 {
     m_ReportTimoutRec = new ReportTimoutRec();
     m_ReportTimoutRec.setParent(this);
 }
Пример #12
0
 public Body()
 {
     m_ReportTimoutRec = new ReportTimoutRec();
     m_ReportTimoutRec.setParent(this);
 }
Пример #13
0
 public void setReportTimoutRec(ReportTimoutRec value)
 {
     m_ReportTimoutRec = value;
     setParentPresenceVector();
 }
Пример #14
0
 public bool notEquals(ReportTimoutRec value)
 {
     return(!this.isEqual(value));
 }
Пример #15
0
                public ReportTimeout.Body.ReportTimoutRec  setReportTimoutRec(ReportTimoutRec value)
                {
                    m_Timeout = value.m_Timeout;

                    return(this);
                }