コード例 #1
0
 public void PrintTo(ISourceInfoCell presentationCell)
 {
     presentationCell.ShowBlock(Name, StartOffset, EndOffset, Length);
     if (DataBlock != null)
     {
         DataBlock.PrintTo(presentationCell);
     }
 }
コード例 #2
0
 public void PrintTo(ISourceInfoCell presentationCell)
 {
     presentationCell.ShowFile(InputFileName);
     ContainerInfo.PrintTo(presentationCell);
     if (!String.IsNullOrEmpty(NotScannedText))
     {
         presentationCell.ShowNotScannedLog(NotScannedText);
     }
 }
コード例 #3
0
 public void PrintTo(ISourceInfoCell presentationCell)
 {
     presentationCell.ShowBlock("Detector Unknown");
 }