/// <summary> /// Builds an exclusionlist from the words contained in the given file. /// </summary> /// <param name="exclusionlist"></param> public void SetStemExclusionTable(FileInfo exclusionlist) { excltable = WordlistLoader.GetWordtable(exclusionlist); }
/// <summary> /// Builds an analyzer with the given stop words. /// </summary> /// <param name="stopwords"></param> public DutchAnalyzer(FileInfo stopwords) { stoptable = WordlistLoader.GetWordtable(stopwords); }