Example #1
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportIdentificationRec = new ReportIdentificationRec();
                m_ReportIdentificationRec.setParent(this);

                /// Copy the values
                m_ReportIdentificationRec = value.getReportIdentificationRec();
                m_ReportIdentificationRec.setParent(this);
                /// This code is currently not supported
            }
Example #2
0
                public ReportIdentificationRec(ReportIdentificationRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent         = null;
                    m_QueryType      = 0;
                    m_Type           = 0;
                    m_Identification = "";

                    /// Copy the values
                    m_QueryType      = value.m_QueryType;
                    m_Type           = value.m_Type;
                    m_Identification = value.m_Identification;
                }
Example #3
0
                public bool isEqual(ReportIdentificationRec value)
                {
                    if (this.getQueryType() != value.getQueryType())
                    {
                        return(false);
                    }
                    if (this.getType() != value.getType())
                    {
                        return(false);
                    }
                    if ((m_Identification.Length != value.m_Identification.Length) || (m_Identification.CompareTo(value.m_Identification) != 0))
                    {
                        return(false);
                    }

                    return(true);
                }
Example #4
0
 public Body()
 {
     m_ReportIdentificationRec = new ReportIdentificationRec();
     m_ReportIdentificationRec.setParent(this);
 }
Example #5
0
 public void setReportIdentificationRec(ReportIdentificationRec value)
 {
     m_ReportIdentificationRec = value;
     setParentPresenceVector();
 }
Example #6
0
 public bool notEquals(ReportIdentificationRec value)
 {
     return(!this.isEqual(value));
 }
Example #7
0
                public ReportIdentification.Body.ReportIdentificationRec  setReportIdentificationRec(ReportIdentificationRec value)
                {
                    m_QueryType      = value.m_QueryType;
                    m_Type           = value.m_Type;
                    m_Identification = value.m_Identification;

                    return(this);
                }