コード例 #1
0
ファイル: CreateEvent.cs プロジェクト: winterjr/jaustoolset
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_CreateEventRec = new CreateEventRec();
                m_CreateEventRec.setParent(this);

                /// Copy the values
                m_CreateEventRec = value.getCreateEventRec();
                m_CreateEventRec.setParent(this);
                /// This code is currently not supported
            }
コード例 #2
0
ファイル: CreateEvent.cs プロジェクト: winterjr/jaustoolset
 public Body()
 {
     m_CreateEventRec = new CreateEventRec();
     m_CreateEventRec.setParent(this);
 }
コード例 #3
0
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_CreateEventRec = new CreateEventRec();
                m_CreateEventRec.setParent(this);

                /// Copy the values
                m_CreateEventRec = value.getCreateEventRec();
                m_CreateEventRec.setParent(this);
                /// This code is currently not supported
            }
コード例 #4
0
            public CreateCommandEvent.Body setBody(Body value)
            {
                m_CreateEventRec = value.getCreateEventRec();
                m_CreateEventRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
コード例 #5
0
 public Body()
 {
     m_CreateEventRec = new CreateEventRec();
     m_CreateEventRec.setParent(this);
 }