コード例 #1
0
                public ConfirmControlRec(ConfirmControlRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent       = null;
                    m_ResponseCode = 0;

                    /// Copy the values
                    m_ResponseCode = value.m_ResponseCode;
                }
コード例 #2
0
                public bool isEqual(ConfirmControlRec value)
                {
                    if (this.getResponseCode() != value.getResponseCode())
                    {
                        return(false);
                    }

                    return(true);
                }
コード例 #3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ConfirmControlRec = new ConfirmControlRec();
                m_ConfirmControlRec.setParent(this);

                /// Copy the values
                m_ConfirmControlRec = value.getConfirmControlRec();
                m_ConfirmControlRec.setParent(this);
                /// This code is currently not supported
            }
コード例 #4
0
                public ConfirmControl.Body.ConfirmControlRec setConfirmControlRec(ConfirmControlRec value)
                {
                    m_ResponseCode = value.m_ResponseCode;

                    return this;
                }
コード例 #5
0
 public bool notEquals(ConfirmControlRec value)
 {
     return !this.isEqual(value);
 }
コード例 #6
0
                public bool isEqual(ConfirmControlRec value)
                {
                    if (this.getResponseCode() != value.getResponseCode())
                    {
                    return false;
                    }

                    return true;
                }
コード例 #7
0
                public ConfirmControlRec(ConfirmControlRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_ResponseCode = 0;

                    /// Copy the values
                    m_ResponseCode = value.m_ResponseCode;
                }
コード例 #8
0
 public void setConfirmControlRec(ConfirmControlRec value)
 {
     m_ConfirmControlRec = value;
     setParentPresenceVector();
 }
コード例 #9
0
            public ConfirmControl.Body setBody(Body value)
            {
                m_ConfirmControlRec = value.getConfirmControlRec();
                m_ConfirmControlRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
コード例 #10
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ConfirmControlRec = new ConfirmControlRec();
                m_ConfirmControlRec.setParent(this);

                /// Copy the values
                m_ConfirmControlRec = value.getConfirmControlRec();
                m_ConfirmControlRec.setParent(this);
                /// This code is currently not supported
            }
コード例 #11
0
 public Body()
 {
     m_ConfirmControlRec = new ConfirmControlRec();
     m_ConfirmControlRec.setParent(this);
 }
コード例 #12
0
 public Body()
 {
     m_ConfirmControlRec = new ConfirmControlRec();
     m_ConfirmControlRec.setParent(this);
 }
コード例 #13
0
 public void setConfirmControlRec(ConfirmControlRec value)
 {
     m_ConfirmControlRec = value;
     setParentPresenceVector();
 }
コード例 #14
0
 public bool notEquals(ConfirmControlRec value)
 {
     return(!this.isEqual(value));
 }
コード例 #15
0
                public ConfirmControl.Body.ConfirmControlRec  setConfirmControlRec(ConfirmControlRec value)
                {
                    m_ResponseCode = value.m_ResponseCode;

                    return(this);
                }