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

                /// Copy the values
                m_ReportControlRec = value.getReportControlRec();
                m_ReportControlRec.setParent(this);
                /// This code is currently not supported
            }
コード例 #2
0
ファイル: ReportControl.cs プロジェクト: nikola-v/jaustoolset
            public ReportControl.Body setBody(Body value)
            {
                m_ReportControlRec = value.getReportControlRec();
                m_ReportControlRec.setParent(this);
                /// This code is currently not supported

                return this;
            }
コード例 #3
0
ファイル: ReportControl.cs プロジェクト: nikola-v/jaustoolset
            public Body(Body value)
            {
                /// Initiliaze the protected variables
                m_ReportControlRec = new ReportControlRec();
                m_ReportControlRec.setParent(this);

                /// Copy the values
                m_ReportControlRec = value.getReportControlRec();
                m_ReportControlRec.setParent(this);
                /// This code is currently not supported
            }
コード例 #4
0
ファイル: ReportControl.cs プロジェクト: nikola-v/jaustoolset
 public Body()
 {
     m_ReportControlRec = new ReportControlRec();
     m_ReportControlRec.setParent(this);
 }
コード例 #5
0
ファイル: ReportControl.cs プロジェクト: winterjr/jaustoolset
 public Body()
 {
     m_ReportControlRec = new ReportControlRec();
     m_ReportControlRec.setParent(this);
 }