Examples of AuxiliaryVerb


Examples of grammar.model.verbs.AuxiliaryVerb

 
  public void endDocument() {
    if (name == null)
      throw new IllegalStateException("No name defined for this model verb!");
    if (auxiliaryVerb) {
      parsedVerb = new AuxiliaryVerb(getLanguage(), name, parents,
          matchTypes,
          tenseMap, refTenseMap, refPronounMap,
          auxiliaryRefTenseMap, auxiliaryRefPronounMap,
          infinitiveMatchers, summary, pronounAgreement, reflexiveAuxiliary);
    }
View Full Code Here

Examples of grammar.model.verbs.AuxiliaryVerb

    lastInfinitive = verb;
    return lastModelVerb = bestFit;
  }

  public AuxiliaryVerb getModelAuxiliaryVerb(String infinitive, boolean reflexive) {
    AuxiliaryVerb bestFit = null;

    //System.err.println("ModelVerbFactory.getAuxiliaryVerb():"+new Date());

//    System.out.println("Model auxiliary verbs: "+modelAuxiliaries);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.