示例#1
0
                public QueryIdentificationRec(QueryIdentificationRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent    = null;
                    m_QueryType = 0;

                    /// Copy the values
                    m_QueryType = value.m_QueryType;
                }
示例#2
0
                public bool isEqual(QueryIdentificationRec value)
                {
                    if (this.getQueryType() != value.getQueryType())
                    {
                        return(false);
                    }

                    return(true);
                }
示例#3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_QueryIdentificationRec = new QueryIdentificationRec();
                m_QueryIdentificationRec.setParent(this);

                /// Copy the values
                m_QueryIdentificationRec = value.getQueryIdentificationRec();
                m_QueryIdentificationRec.setParent(this);
                /// This code is currently not supported
            }
示例#4
0
 public Body()
 {
     m_QueryIdentificationRec = new QueryIdentificationRec();
     m_QueryIdentificationRec.setParent(this);
 }
示例#5
0
 public void setQueryIdentificationRec(QueryIdentificationRec value)
 {
     m_QueryIdentificationRec = value;
     setParentPresenceVector();
 }
示例#6
0
 public bool notEquals(QueryIdentificationRec value)
 {
     return(!this.isEqual(value));
 }
示例#7
0
                public QueryIdentification.Body.QueryIdentificationRec  setQueryIdentificationRec(QueryIdentificationRec value)
                {
                    m_QueryType = value.m_QueryType;

                    return(this);
                }