Exemple #1
0
                public ConfirmControlRec(ConfirmControlRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent       = null;
                    m_ResponseCode = 0;

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

                    return(true);
                }
Exemple #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
            }
                public ConfirmControl.Body.ConfirmControlRec setConfirmControlRec(ConfirmControlRec value)
                {
                    m_ResponseCode = value.m_ResponseCode;

                    return this;
                }
 public bool notEquals(ConfirmControlRec value)
 {
     return !this.isEqual(value);
 }
                public bool isEqual(ConfirmControlRec value)
                {
                    if (this.getResponseCode() != value.getResponseCode())
                    {
                    return false;
                    }

                    return true;
                }
                public ConfirmControlRec(ConfirmControlRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent = null;
                    m_ResponseCode = 0;

                    /// Copy the values
                    m_ResponseCode = value.m_ResponseCode;
                }
 public void setConfirmControlRec(ConfirmControlRec value)
 {
     m_ConfirmControlRec = value;
     setParentPresenceVector();
 }
            public ConfirmControl.Body setBody(Body value)
            {
                m_ConfirmControlRec = value.getConfirmControlRec();
                m_ConfirmControlRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
            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
            }
 public Body()
 {
     m_ConfirmControlRec = new ConfirmControlRec();
     m_ConfirmControlRec.setParent(this);
 }
Exemple #12
0
 public Body()
 {
     m_ConfirmControlRec = new ConfirmControlRec();
     m_ConfirmControlRec.setParent(this);
 }
Exemple #13
0
 public void setConfirmControlRec(ConfirmControlRec value)
 {
     m_ConfirmControlRec = value;
     setParentPresenceVector();
 }
Exemple #14
0
 public bool notEquals(ConfirmControlRec value)
 {
     return(!this.isEqual(value));
 }
Exemple #15
0
                public ConfirmControl.Body.ConfirmControlRec  setConfirmControlRec(ConfirmControlRec value)
                {
                    m_ResponseCode = value.m_ResponseCode;

                    return(this);
                }