SIL.Cog.Application.Services.AnalysisService.GetCompareProcessors C# (CSharp) Méthode

GetCompareProcessors() private méthode

private GetCompareProcessors ( ) : IEnumerable>
Résultat IEnumerable>
        private IEnumerable<IProcessor<VarietyPair>> GetCompareProcessors()
        {
            CogProject project = _projectService.Project;
            var processors = new List<IProcessor<VarietyPair>>
                {
                    project.VarietyPairProcessors[ComponentIdentifiers.WordPairGenerator],
                    new EMSoundChangeInducer(_segmentPool, project, ComponentIdentifiers.PrimaryWordAligner, ComponentIdentifiers.PrimaryCognateIdentifier),
                    new SoundCorrespondenceIdentifier(_segmentPool, project, ComponentIdentifiers.PrimaryWordAligner)
                };
            return processors;
        }