Package grammar.model.ImpersonalForm

Examples of grammar.model.ImpersonalForm.ImpersonalFormCategory


          affectedPronouns.addAll(PersonalPronounCategory.getPronounSet(affectedMultiplicity, person));
        }
        else { // impersonal
          affectedPronouns.clear();
          enableParsing(ParseMode.RULE);
          affectedPronouns.add(new ImpersonalFormCategory(qName.toUpperCase().replace(' ', '_')));
        }
        //return;
      }
      catch (Exception e) {
        // Legitimate; do nothing
View Full Code Here


            else if (parsedStringAsConstant.equals(""))
              targetPronoun = affectedPronoun;
            else if (targetTense != null && targetTense.getMood().isPersonal())
              targetPronoun = PersonalPronounCategory.valueOf(parsedStringAsConstant);
            else
              targetPronoun = new ImpersonalFormCategory(parsedStringAsConstant);
           
            Tense targetTense2;
            if (inheritTense)
              targetTense2 = null; // no rule; refer to parent
            else if (targetTense == null)
View Full Code Here

TOP

Related Classes of grammar.model.ImpersonalForm.ImpersonalFormCategory

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.