Ejemplo n.º 1
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_EventRec = new EventRec();
                m_EventRec.setParent(this);

                /// Copy the values
                m_EventRec = value.getEventRec();
                m_EventRec.setParent(this);
                /// This code is currently not supported
            }
Ejemplo n.º 2
0
 public Body()
 {
     m_EventRec = new EventRec();
     m_EventRec.setParent(this);
 }
Ejemplo n.º 3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_EventRec = new EventRec();
                m_EventRec.setParent(this);

                /// Copy the values
                m_EventRec = value.getEventRec();
                m_EventRec.setParent(this);
                /// This code is currently not supported
            }
Ejemplo n.º 4
0
            public Event.Body setBody(Body value)
            {
                m_EventRec = value.getEventRec();
                m_EventRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
Ejemplo n.º 5
0
 public Body()
 {
     m_EventRec = new EventRec();
     m_EventRec.setParent(this);
 }