Package grammar.model.verbs

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


    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

Related Classes of grammar.model.verbs.AuxiliaryVerb

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.