Exemplo n.º 1
0
 public AdjPhraseSpec(NLGFactory phraseFactory) : base(new PhraseCategory(PhraseCategory.PhraseCategoryEnum.ADJECTIVE_PHRASE))
 {
     Factory = phraseFactory;
 }
Exemplo n.º 2
0
 public AdvPhraseSpec(NLGFactory phraseFactory) : base(new PhraseCategory(PhraseCategory.PhraseCategoryEnum.ADVERB_PHRASE))
 {
     Factory = phraseFactory;
 }
Exemplo n.º 3
0
 public NPPhraseSpec(NLGFactory phraseFactory) : base(new PhraseCategory(PhraseCategory.PhraseCategoryEnum.NOUN_PHRASE))
 {
     Factory = phraseFactory;
     setFeature(Feature.IS_CAPITALIZED, false);
 }