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

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

                    return(true);
                }
Пример #3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportAuthorityRec = new ReportAuthorityRec();
                m_ReportAuthorityRec.setParent(this);

                /// Copy the values
                m_ReportAuthorityRec = value.getReportAuthorityRec();
                m_ReportAuthorityRec.setParent(this);
                /// This code is currently not supported
            }
Пример #4
0
 public Body()
 {
     m_ReportAuthorityRec = new ReportAuthorityRec();
     m_ReportAuthorityRec.setParent(this);
 }
Пример #5
0
 public void setReportAuthorityRec(ReportAuthorityRec value)
 {
     m_ReportAuthorityRec = value;
     setParentPresenceVector();
 }
Пример #6
0
 public bool notEquals(ReportAuthorityRec value)
 {
     return(!this.isEqual(value));
 }
Пример #7
0
                public ReportAuthority.Body.ReportAuthorityRec setReportAuthorityRec(ReportAuthorityRec value)
                {
                    m_AuthorityCode = value.m_AuthorityCode;

                    return this;
                }
Пример #8
0
                public ReportAuthority.Body.ReportAuthorityRec  setReportAuthorityRec(ReportAuthorityRec value)
                {
                    m_AuthorityCode = value.m_AuthorityCode;

                    return(this);
                }
Пример #9
0
                public bool isEqual(ReportAuthorityRec value)
                {
                    if (this.getAuthorityCode() != value.getAuthorityCode())
                    {
                    return false;
                    }

                    return true;
                }
Пример #10
0
 public bool notEquals(ReportAuthorityRec value)
 {
     return !this.isEqual(value);
 }
Пример #11
0
                public ReportAuthorityRec(ReportAuthorityRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_AuthorityCode = 0;

                    /// Copy the values
                    m_AuthorityCode = value.m_AuthorityCode;
                }
Пример #12
0
 public void setReportAuthorityRec(ReportAuthorityRec value)
 {
     m_ReportAuthorityRec = value;
     setParentPresenceVector();
 }
Пример #13
0
            public ReportAuthority.Body setBody(Body value)
            {
                m_ReportAuthorityRec = value.getReportAuthorityRec();
                m_ReportAuthorityRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Пример #14
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportAuthorityRec = new ReportAuthorityRec();
                m_ReportAuthorityRec.setParent(this);

                /// Copy the values
                m_ReportAuthorityRec = value.getReportAuthorityRec();
                m_ReportAuthorityRec.setParent(this);
                /// This code is currently not supported
            }
Пример #15
0
 public Body()
 {
     m_ReportAuthorityRec = new ReportAuthorityRec();
     m_ReportAuthorityRec.setParent(this);
 }