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