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