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

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

                    return(true);
                }
Ejemplo n.º 3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_AuthorityRec = new authorityRec();
                m_AuthorityRec.setParent(this);

                /// Copy the values
                m_AuthorityRec = value.getAuthorityRec();
                m_AuthorityRec.setParent(this);
                /// This code is currently not supported
            }
Ejemplo n.º 4
0
                public SetAuthority.Body.authorityRec setauthorityRec(authorityRec value)
                {
                    m_AuthorityCode = value.m_AuthorityCode;

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

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

                    /// Copy the values
                    m_AuthorityCode = value.m_AuthorityCode;
                }
Ejemplo n.º 8
0
            public SetAuthority.Body setBody(Body value)
            {
                m_AuthorityRec = value.getAuthorityRec();
                m_AuthorityRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Ejemplo n.º 9
0
 public void setAuthorityRec(authorityRec value)
 {
     m_AuthorityRec = value;
     setParentPresenceVector();
 }
Ejemplo n.º 10
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_AuthorityRec = new authorityRec();
                m_AuthorityRec.setParent(this);

                /// Copy the values
                m_AuthorityRec = value.getAuthorityRec();
                m_AuthorityRec.setParent(this);
                /// This code is currently not supported
            }
Ejemplo n.º 11
0
 public Body()
 {
     m_AuthorityRec = new authorityRec();
     m_AuthorityRec.setParent(this);
 }
Ejemplo n.º 12
0
 public Body()
 {
     m_AuthorityRec = new authorityRec();
     m_AuthorityRec.setParent(this);
 }
Ejemplo n.º 13
0
 public void setAuthorityRec(authorityRec value)
 {
     m_AuthorityRec = value;
     setParentPresenceVector();
 }
Ejemplo n.º 14
0
 public bool notEquals(authorityRec value)
 {
     return(!this.isEqual(value));
 }
Ejemplo n.º 15
0
                public SetAuthority.Body.authorityRec  setauthorityRec(authorityRec value)
                {
                    m_AuthorityCode = value.m_AuthorityCode;

                    return(this);
                }