Exemplo n.º 1
0
                public ReportAuthorityRec(ReportAuthorityRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent        = null;
                    m_AuthorityCode = 0;

                    /// Copy the values
                    m_AuthorityCode = value.m_AuthorityCode;
                }
Exemplo n.º 2
0
                public bool isEqual(ReportAuthorityRec value)
                {
                    if (this.getAuthorityCode() != value.getAuthorityCode())
                    {
                        return(false);
                    }

                    return(true);
                }
Exemplo n.º 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
            }
Exemplo n.º 4
0
 public Body()
 {
     m_ReportAuthorityRec = new ReportAuthorityRec();
     m_ReportAuthorityRec.setParent(this);
 }
Exemplo n.º 5
0
 public void setReportAuthorityRec(ReportAuthorityRec value)
 {
     m_ReportAuthorityRec = value;
     setParentPresenceVector();
 }
Exemplo n.º 6
0
 public bool notEquals(ReportAuthorityRec value)
 {
     return(!this.isEqual(value));
 }
Exemplo n.º 7
0
                public ReportAuthority.Body.ReportAuthorityRec setReportAuthorityRec(ReportAuthorityRec value)
                {
                    m_AuthorityCode = value.m_AuthorityCode;

                    return this;
                }
Exemplo n.º 8
0
                public ReportAuthority.Body.ReportAuthorityRec  setReportAuthorityRec(ReportAuthorityRec value)
                {
                    m_AuthorityCode = value.m_AuthorityCode;

                    return(this);
                }
Exemplo n.º 9
0
                public bool isEqual(ReportAuthorityRec value)
                {
                    if (this.getAuthorityCode() != value.getAuthorityCode())
                    {
                    return false;
                    }

                    return true;
                }
Exemplo n.º 10
0
 public bool notEquals(ReportAuthorityRec value)
 {
     return !this.isEqual(value);
 }
Exemplo n.º 11
0
                public ReportAuthorityRec(ReportAuthorityRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_AuthorityCode = 0;

                    /// Copy the values
                    m_AuthorityCode = value.m_AuthorityCode;
                }
Exemplo n.º 12
0
 public void setReportAuthorityRec(ReportAuthorityRec value)
 {
     m_ReportAuthorityRec = value;
     setParentPresenceVector();
 }
Exemplo n.º 13
0
            public ReportAuthority.Body setBody(Body value)
            {
                m_ReportAuthorityRec = value.getReportAuthorityRec();
                m_ReportAuthorityRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Exemplo n.º 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
            }
Exemplo n.º 15
0
 public Body()
 {
     m_ReportAuthorityRec = new ReportAuthorityRec();
     m_ReportAuthorityRec.setParent(this);
 }