Package grammar.model

Examples of grammar.model.Person


      try {
        if (qName.equals("parent")) {
          return;
        }
        if (affectedTenses.get(0).getMood().isPersonal()) {
          Person person = Person.valueOf(qName.toUpperCase().replace(' ', '_'));
          affectedPronouns.clear();
          enableParsing(ParseMode.RULE);
          affectedPronouns.addAll(PersonalPronounCategory.getPronounSet(affectedMultiplicity, person));
        }
        else { // impersonal
View Full Code Here

TOP

Related Classes of grammar.model.Person

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.