Package simplenlg.format.english

Examples of simplenlg.format.english.TextFormatter


  public void setUp() {
    super.setUp();

    // need to set formatter for realiser (set to null in the test
    // superclass)
    this.realiser.setFormatter(new TextFormatter());

    // a couple phrases as list items
    this.listItem1 = this.phraseFactory.createListItem(this.inTheRoom);
    this.listItem2 = this.phraseFactory
        .createListItem(this.behindTheCurtain);
View Full Code Here


    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

TOP

Related Classes of simplenlg.format.english.TextFormatter

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.