示例#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");
 }