Example #1
0
                public ReportStatus.Body.ReportStatusRec  setReportStatusRec(ReportStatusRec value)
                {
                    m_Status   = value.m_Status;
                    m_Reserved = value.m_Reserved;

                    return(this);
                }
Example #2
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportStatusRec = new ReportStatusRec();
                m_ReportStatusRec.setParent(this);

                /// Copy the values
                m_ReportStatusRec = value.getReportStatusRec();
                m_ReportStatusRec.setParent(this);
                /// This code is currently not supported
            }
Example #3
0
                public ReportStatusRec(ReportStatusRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent   = null;
                    m_Status   = 0;
                    m_Reserved = 0;

                    /// Copy the values
                    m_Status   = value.m_Status;
                    m_Reserved = value.m_Reserved;
                }
Example #4
0
                public bool isEqual(ReportStatusRec value)
                {
                    if (this.getStatus() != value.getStatus())
                    {
                        return(false);
                    }
                    if (this.getReserved() != value.getReserved())
                    {
                        return(false);
                    }

                    return(true);
                }
Example #5
0
 public Body()
 {
     m_ReportStatusRec = new ReportStatusRec();
     m_ReportStatusRec.setParent(this);
 }
Example #6
0
 public void setReportStatusRec(ReportStatusRec value)
 {
     m_ReportStatusRec = value;
     setParentPresenceVector();
 }
Example #7
0
 public bool notEquals(ReportStatusRec value)
 {
     return(!this.isEqual(value));
 }
Example #8
0
                public ReportStatus.Body.ReportStatusRec setReportStatusRec(ReportStatusRec value)
                {
                    m_Status = value.m_Status;
                    m_Reserved = value.m_Reserved;

                    return this;
                }
Example #9
0
                public bool isEqual(ReportStatusRec value)
                {
                    if (this.getStatus() != value.getStatus())
                    {
                    return false;
                    }
                    if (this.getReserved() != value.getReserved())
                    {
                    return false;
                    }

                    return true;
                }
Example #10
0
 public bool notEquals(ReportStatusRec value)
 {
     return !this.isEqual(value);
 }
Example #11
0
                public ReportStatusRec(ReportStatusRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_Status = 0;
                    m_Reserved = 0;

                    /// Copy the values
                    m_Status = value.m_Status;
                    m_Reserved = value.m_Reserved;
                }
Example #12
0
 public void setReportStatusRec(ReportStatusRec value)
 {
     m_ReportStatusRec = value;
     setParentPresenceVector();
 }
Example #13
0
            public ReportStatus.Body setBody(Body value)
            {
                m_ReportStatusRec = value.getReportStatusRec();
                m_ReportStatusRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Example #14
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportStatusRec = new ReportStatusRec();
                m_ReportStatusRec.setParent(this);

                /// Copy the values
                m_ReportStatusRec = value.getReportStatusRec();
                m_ReportStatusRec.setParent(this);
                /// This code is currently not supported
            }
Example #15
0
 public Body()
 {
     m_ReportStatusRec = new ReportStatusRec();
     m_ReportStatusRec.setParent(this);
 }