Ejemplo n.º 1
0
            public override bool Accept(AttributeSource a)
            {
                ITermAttribute termAtt = a.GetAttribute <ITermAttribute>();

                return(termAtt.Term.ToUpper().Equals("Dogs".ToUpper()));
            }
 public override bool Accept(AttributeSource a)
 {
     ITermAttribute termAtt = a.GetAttribute<ITermAttribute>();
     return termAtt.Term.ToUpper().Equals("Dogs".ToUpper());
 }
Ejemplo n.º 3
0
            public override bool Accept(AttributeSource a)
            {
                TermAttribute termAtt = (TermAttribute)a.GetAttribute(typeof(TermAttribute));

                return(termAtt.Term().ToUpper().Equals("Dogs".ToUpper()));
            }
Ejemplo n.º 4
0
			public override bool Accept(AttributeSource a)
			{
				TermAttribute termAtt = (TermAttribute) a.GetAttribute(typeof(TermAttribute));
				return termAtt.Term().ToUpper().Equals("Dogs".ToUpper());
			}