예제 #1
0
 public IExternallyBrowsablePeekResult Create(IPeekResultDisplayInfo displayInfo, Action browseAction)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public IDocumentPeekResult Create(IPeekResultDisplayInfo displayInfo, string filePath, Span eoiSpan, int idPosition, bool isReadOnly)
 {
     throw new NotImplementedException();
 }
예제 #3
0
 public DocumentPeekResultMock(IPeekResultDisplayInfo info, string filePath, Span span)
 {
     _span       = span;
     FilePath    = filePath;
     DisplayInfo = info;
 }
예제 #4
0
 public IDocumentPeekResult Create(IPeekResultDisplayInfo displayInfo, string filePath, int startLine, int startIndex, int endLine, int endIndex, int idLine, int idIndex, bool isReadOnly)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 public DocumentPeekResultMock(IPeekResultDisplayInfo info, string filePath, Span span) {
     _span = span;
     FilePath = filePath;
     DisplayInfo = info;
 }