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