Esempio n. 1
0
	    public MorphAnalyzer(DictRadix<MorphData> dict)
	    {
			hebMorphLemmatizer = new HebMorph.StreamLemmatizer(dict, false);
	    }
Esempio n. 2
0
        public MorphAnalyzer(HebMorph.StreamLemmatizer hml)
            : base()
        {
            hebMorphLemmatizer = hml;
			SetOverridesTokenStreamMethod <MorphAnalyzer>();
        }
Esempio n. 3
0
        public MorphAnalyzer(string HSpellDataFilesPath)
            : base()
        {
			hebMorphLemmatizer = new StreamLemmatizer(HSpellDataFilesPath, true, false);
			SetOverridesTokenStreamMethod<MorphAnalyzer>();
        }
Esempio n. 4
0
		public MorphAnalyzer(MorphAnalyzer other)
			: base()
		{
			hebMorphLemmatizer = other.hebMorphLemmatizer;
			SetOverridesTokenStreamMethod<MorphAnalyzer>();
		}
Esempio n. 5
0
 public MorphAnalyzer(DictRadix <MorphData> dict)
 {
     hebMorphLemmatizer = new HebMorph.StreamLemmatizer(dict, false);
 }
Esempio n. 6
0
 public MorphAnalyzer(string HSpellDataFilesPath)
     : base()
 {
     hebMorphLemmatizer = new StreamLemmatizer(HSpellDataFilesPath, true, false);
     SetOverridesTokenStreamMethod <MorphAnalyzer>();
 }
Esempio n. 7
0
 public MorphAnalyzer(HebMorph.StreamLemmatizer hml)
     : base()
 {
     hebMorphLemmatizer = hml;
     SetOverridesTokenStreamMethod <MorphAnalyzer>();
 }
Esempio n. 8
0
 public MorphAnalyzer(MorphAnalyzer other)
     : base()
 {
     hebMorphLemmatizer = other.hebMorphLemmatizer;
     SetOverridesTokenStreamMethod <MorphAnalyzer>();
 }