예제 #1
0
                public ReportControl.Body.ReportControlRec  setReportControlRec(ReportControlRec value)
                {
                    m_SubsystemID   = value.m_SubsystemID;
                    m_NodeID        = value.m_NodeID;
                    m_ComponentID   = value.m_ComponentID;
                    m_AuthorityCode = value.m_AuthorityCode;

                    return(this);
                }
예제 #2
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportControlRec = new ReportControlRec();
                m_ReportControlRec.setParent(this);

                /// Copy the values
                m_ReportControlRec = value.getReportControlRec();
                m_ReportControlRec.setParent(this);
                /// This code is currently not supported
            }
예제 #3
0
                public ReportControlRec(ReportControlRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent        = null;
                    m_SubsystemID   = 0;
                    m_NodeID        = 0;
                    m_ComponentID   = 0;
                    m_AuthorityCode = 0;

                    /// Copy the values
                    m_SubsystemID   = value.m_SubsystemID;
                    m_NodeID        = value.m_NodeID;
                    m_ComponentID   = value.m_ComponentID;
                    m_AuthorityCode = value.m_AuthorityCode;
                }
예제 #4
0
                public bool isEqual(ReportControlRec value)
                {
                    if (this.getSubsystemID() != value.getSubsystemID())
                    {
                        return(false);
                    }
                    if (this.getNodeID() != value.getNodeID())
                    {
                        return(false);
                    }
                    if (this.getComponentID() != value.getComponentID())
                    {
                        return(false);
                    }
                    if (this.getAuthorityCode() != value.getAuthorityCode())
                    {
                        return(false);
                    }

                    return(true);
                }
예제 #5
0
                public ReportControl.Body.ReportControlRec setReportControlRec(ReportControlRec value)
                {
                    m_SubsystemID = value.m_SubsystemID;
                    m_NodeID = value.m_NodeID;
                    m_ComponentID = value.m_ComponentID;
                    m_AuthorityCode = value.m_AuthorityCode;

                    return this;
                }
예제 #6
0
 public bool notEquals(ReportControlRec value)
 {
     return !this.isEqual(value);
 }
예제 #7
0
                public bool isEqual(ReportControlRec value)
                {
                    if (this.getSubsystemID() != value.getSubsystemID())
                    {
                    return false;
                    }
                    if (this.getNodeID() != value.getNodeID())
                    {
                    return false;
                    }
                    if (this.getComponentID() != value.getComponentID())
                    {
                    return false;
                    }
                    if (this.getAuthorityCode() != value.getAuthorityCode())
                    {
                    return false;
                    }

                    return true;
                }
예제 #8
0
                public ReportControlRec(ReportControlRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_SubsystemID = 0;
                    m_NodeID = 0;
                    m_ComponentID = 0;
                    m_AuthorityCode = 0;

                    /// Copy the values
                    m_SubsystemID = value.m_SubsystemID;
                    m_NodeID = value.m_NodeID;
                    m_ComponentID = value.m_ComponentID;
                    m_AuthorityCode = value.m_AuthorityCode;
                }
예제 #9
0
 public void setReportControlRec(ReportControlRec value)
 {
     m_ReportControlRec = value;
     setParentPresenceVector();
 }
예제 #10
0
            public ReportControl.Body setBody(Body value)
            {
                m_ReportControlRec = value.getReportControlRec();
                m_ReportControlRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
예제 #11
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportControlRec = new ReportControlRec();
                m_ReportControlRec.setParent(this);

                /// Copy the values
                m_ReportControlRec = value.getReportControlRec();
                m_ReportControlRec.setParent(this);
                /// This code is currently not supported
            }
예제 #12
0
 public Body()
 {
     m_ReportControlRec = new ReportControlRec();
     m_ReportControlRec.setParent(this);
 }
예제 #13
0
 public Body()
 {
     m_ReportControlRec = new ReportControlRec();
     m_ReportControlRec.setParent(this);
 }
예제 #14
0
 public void setReportControlRec(ReportControlRec value)
 {
     m_ReportControlRec = value;
     setParentPresenceVector();
 }
예제 #15
0
 public bool notEquals(ReportControlRec value)
 {
     return(!this.isEqual(value));
 }