Examples of ParseTextTranslate


Examples of com.gtranslate.parsing.ParseTextTranslate

  }

  public void translate(TextTranslate textTranslate) {

    Parse parse = new ParseTextTranslate(textTranslate);
    parse.parse();

  }
View Full Code Here

Examples of com.gtranslate.parsing.ParseTextTranslate

  public String translate(String text, String languageInput,
      String languageOutput) {

    Text input = new Text(text, languageInput);
    TextTranslate textTranslate = new TextTranslate(input, languageOutput);
    Parse parse = new ParseTextTranslate(textTranslate);
    parse.parse();
    return textTranslate.getOutput().getText();

  }
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.