Exemplo n.º 1
0
                public ConfirmControlRec(ConfirmControlRec value)
                {
                    /// Initiliaze the protected variables
                    m_parent       = null;
                    m_ResponseCode = 0;

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

                    return(true);
                }
Exemplo n.º 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
            }
Exemplo n.º 4
0
                public ConfirmControl.Body.ConfirmControlRec setConfirmControlRec(ConfirmControlRec value)
                {
                    m_ResponseCode = value.m_ResponseCode;

                    return this;
                }
Exemplo n.º 5
0
 public bool notEquals(ConfirmControlRec value)
 {
     return !this.isEqual(value);
 }
Exemplo n.º 6
0
                public bool isEqual(ConfirmControlRec value)
                {
                    if (this.getResponseCode() != value.getResponseCode())
                    {
                    return false;
                    }

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

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

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

                    return(this);
                }