Ejemplo n.º 1
0
                public ReportTimoutRec(ReportTimoutRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent  = null;
                    m_Timeout = 0;

                    /// Copy the values
                    m_Timeout = value.m_Timeout;
                }
Ejemplo n.º 2
0
                public bool isEqual(ReportTimoutRec value)
                {
                    if (this.getTimeout() != value.getTimeout())
                    {
                        return(false);
                    }

                    return(true);
                }
Ejemplo n.º 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
            }
Ejemplo n.º 4
0
                public ReportTimeout.Body.ReportTimoutRec setReportTimoutRec(ReportTimoutRec value)
                {
                    m_Timeout = value.m_Timeout;

                    return this;
                }
Ejemplo n.º 5
0
 public bool notEquals(ReportTimoutRec value)
 {
     return !this.isEqual(value);
 }
Ejemplo n.º 6
0
                public bool isEqual(ReportTimoutRec value)
                {
                    if (this.getTimeout() != value.getTimeout())
                    {
                    return false;
                    }

                    return true;
                }
Ejemplo n.º 7
0
                public ReportTimoutRec(ReportTimoutRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_Timeout = 0;

                    /// Copy the values
                    m_Timeout = value.m_Timeout;
                }
Ejemplo n.º 8
0
 public void setReportTimoutRec(ReportTimoutRec value)
 {
     m_ReportTimoutRec = value;
     setParentPresenceVector();
 }
Ejemplo n.º 9
0
            public ReportTimeout.Body setBody(Body value)
            {
                m_ReportTimoutRec = value.getReportTimoutRec();
                m_ReportTimoutRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Ejemplo n.º 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
            }
Ejemplo n.º 11
0
 public Body()
 {
     m_ReportTimoutRec = new ReportTimoutRec();
     m_ReportTimoutRec.setParent(this);
 }
Ejemplo n.º 12
0
 public Body()
 {
     m_ReportTimoutRec = new ReportTimoutRec();
     m_ReportTimoutRec.setParent(this);
 }
Ejemplo n.º 13
0
 public void setReportTimoutRec(ReportTimoutRec value)
 {
     m_ReportTimoutRec = value;
     setParentPresenceVector();
 }
Ejemplo n.º 14
0
 public bool notEquals(ReportTimoutRec value)
 {
     return(!this.isEqual(value));
 }
Ejemplo n.º 15
0
                public ReportTimeout.Body.ReportTimoutRec  setReportTimoutRec(ReportTimoutRec value)
                {
                    m_Timeout = value.m_Timeout;

                    return(this);
                }