public void InitializeFromFile(string stopwords_filename)
 {
     stopword_handler = new StopWordHandler(stopwords_filename);
 }
 public void Initialize(string stopwords)
 {
     stopword_handler = new StopWordHandler();
     stopword_handler.Initialize(stopwords);
 }