Package simplenlg.syntax.english

Examples of simplenlg.syntax.english.SyntaxProcessor


  public void initialise() {
    this.morphology = new MorphologyProcessor();
    this.morphology.initialise();
    this.orthography = new OrthographyProcessor();
    this.orthography.initialise();
    this.syntax = new SyntaxProcessor();
    this.syntax.initialise();
    this.formatter = new TextFormatter();
    //AG: added call to initialise for formatter
    this.formatter.initialise();
  }
View Full Code Here


  public NewAggregator() {

  }

  public void initialise() {
    this._syntax = new SyntaxProcessor();
    this._factory = new NLGFactory();
  }
View Full Code Here

TOP

Related Classes of simplenlg.syntax.english.SyntaxProcessor

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.