예제 #1
0
 public void AddInsightDataProvider(IInsightDataProvider provider, string fileName)
 {
     provider.SetupDataProvider(fileName, control.ActiveTextAreaControl.TextArea);
     if (provider.InsightDataCount > 0) {
         insightDataProviderStack.Push(new InsightDataProviderStackElement(provider));
     }
 }
예제 #2
0
 public void AddInsightDataProvider(IInsightDataProvider provider, string fileName)
 {
     provider.SetupDataProvider(fileName, control.ActiveTextAreaControl.TextArea);
     if (provider.InsightDataCount > 0)
     {
         insightDataProviderStack.Push(new InsightDataProviderStackElement(provider));
     }
 }
예제 #3
0
 public void AddInsightDataProvider(IInsightDataProvider provider)
 {
     provider.SetupDataProvider(this.fileName, this.control.ActiveTextAreaControl.TextArea);
     if (provider.InsightDataCount > 0)
     {
         this.insightDataProviderStack.Push(new InsightWindow.InsightDataProviderStackElement(provider));
     }
 }
예제 #4
0
 public void AddInsightDataProvider(IInsightDataProvider provider, string fileName)
 {
     provider.SetupDataProvider(fileName, this.control.ActiveTextAreaControl.TextArea);
     if (provider.InsightDataCount > 0)
     {
         this.insightDataProviderStack.Push(new ICSharpCode.TextEditor.Gui.InsightWindow.InsightWindow.InsightDataProviderStackElement(provider));
     }
 }
 public void AddInsightDataProvider(IInsightDataProvider provider)
 {
     provider.SetupDataProvider(project, fileName, control);
     if (provider.InsightDataCount > 0) {
         insightDataProviderStack.Push(new InsightDataProviderStackElement(provider));
     }
 }