Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TextSearchTaggerFactoryService.cs « TextSearch « Impl « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fca8282b1712c28d6bf9d405c32db5ac1b490bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
// This file contain implementations details that are subject to change without notice.
// Use at your own risk.
//
namespace Microsoft.VisualStudio.Text.Find.Implementation
{
    using System;
    using System.ComponentModel.Composition;

    using Microsoft.VisualStudio.Text.Operations;
    using Microsoft.VisualStudio.Text.Tagging;

    [Export(typeof(ITextSearchTaggerFactoryService))]
    class TextSearchTaggerFactoryService : ITextSearchTaggerFactoryService
    {
        [Import]
        private ITextSearchService2 TextSearchService = null;

        #region ITextSearchTaggerFactoryService Members

        public ITextSearchTagger<T> CreateTextSearchTagger<T>(ITextBuffer buffer) where T : ITag
        {
            if (buffer == null)
            {
                throw new ArgumentNullException("buffer");
            }

            // Don't return singleton instances since multiple taggers can exist per buffer
            return new TextSearchTagger<T>(this.TextSearchService, buffer);
        }

        #endregion
    }
}