示例#1
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_BroadcastRec = new BroadcastRec();
                m_BroadcastRec.setParent(this);

                /// Copy the values
                m_BroadcastRec = value.getBroadcastRec();
                m_BroadcastRec.setParent(this);
                /// This code is currently not supported
            }
示例#2
0
 public Body()
 {
     m_BroadcastRec = new BroadcastRec();
     m_BroadcastRec.setParent(this);
 }
示例#3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_BroadcastRec = new BroadcastRec();
                m_BroadcastRec.setParent(this);

                /// Copy the values
                m_BroadcastRec = value.getBroadcastRec();
                m_BroadcastRec.setParent(this);
                /// This code is currently not supported
            }
示例#4
0
            public BroadcastLocal.Body setBody(Body value)
            {
                m_BroadcastRec = value.getBroadcastRec();
                m_BroadcastRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
示例#5
0
 public Body()
 {
     m_BroadcastRec = new BroadcastRec();
     m_BroadcastRec.setParent(this);
 }