コード例 #1
0
ファイル: RawAnalysisReport.cs プロジェクト: hnordquist/INCC6
 public RawAnalysisReport(NCCReporter.LMLoggers.LognLM ctrllog)
     : base(ctrllog)
 {
     selectedReportSections = Array.CreateInstance(typeof(bool), System.Enum.GetValues(typeof(RawReportSections)).Length);
     foreach (ValueType v in System.Enum.GetValues(typeof(RawReportSections)))
     {
         selectedReportSections.SetValue(true, (int)v);
     }
 }
コード例 #2
0
ファイル: Excel.cs プロジェクト: tempbottle/INCC6
 public static bool ExcelPresent(NCCReporter.LMLoggers.LognLM optlog = null)
 {
     try
     {
         //Excel.Application nitz;
         //nitz = new Excel.Application();
         return true;
     }
     catch (Exception e)
     {
         if (optlog != null)
             optlog.TraceException(e);
     }
     return false;
 }
コード例 #3
0
ファイル: ReportBase.cs プロジェクト: tempbottle/INCC6
 public ReportMangler(NCCReporter.LMLoggers.LognLM ctrllog)
 {
     this.ctrllog = ctrllog;
     INCCResultsReports = new List<List<string>>();
     TestDataFiles = new List<List<string>>();
 }
コード例 #4
0
 public TestDataFile(NCCReporter.LMLoggers.LognLM ctrllog)
     : base(ctrllog)
 {
     INCCTestDataFiles = new List<List<string>>();
 }
コード例 #5
0
 public MethodResultsReport(NCCReporter.LMLoggers.LognLM ctrllog)
     : base(ctrllog)
 {
     INCCResultsReports = new List<List<string>>();
 }
コード例 #6
0
ファイル: HV.cs プロジェクト: tempbottle/INCC6
 public HVExcel(NCCReporter.LMLoggers.LognLM ctrllog)
     : base(ctrllog)
 {
 }
コード例 #7
0
ファイル: HV.cs プロジェクト: tempbottle/INCC6
 // dev note: pre-define template somewhere, and use it, having the very nice graph already prepared for line by line updating here
 public HVExcel(string existingWB, NCCReporter.LMLoggers.LognLM ctrllog) : base (existingWB, ctrllog)
 {
 }
コード例 #8
0
ファイル: HV.cs プロジェクト: tempbottle/INCC6
 public SimpleHVReport(NCCReporter.LMLoggers.LognLM ctrllog)
 {
     this.ctrllog = ctrllog;
 }
コード例 #9
0
ファイル: Excel.cs プロジェクト: tempbottle/INCC6
 public ExcelPush(NCCReporter.LMLoggers.LognLM ctrllog)
 {
     this.ctrllog = ctrllog;
 }
コード例 #10
0
ファイル: Excel.cs プロジェクト: tempbottle/INCC6
       //protected Excel.Application target;

        // dev note: pre-define template somewhere, and use it, having the very nice graph already prepared for line by line updating here
        public ExcelPush(string existingWB, NCCReporter.LMLoggers.LognLM ctrllog)
        {
            this.ctrllog = ctrllog;
        }
コード例 #11
0
ファイル: RawAnalysisReport.cs プロジェクト: tempbottle/INCC6
        public RawAnalysisReport(NCCReporter.LMLoggers.LognLM ctrllog)
            : base(ctrllog)
        {

            selectedReportSections = Array.CreateInstance(typeof(bool), System.Enum.GetValues(typeof(RawReportSections)).Length);
            foreach (ValueType v in System.Enum.GetValues(typeof(RawReportSections)))// dev note: these would be user selections eventually, for now we enable every possible report section
            {
                selectedReportSections.SetValue(true, (int)v);
            }
        }