Package org.geekhub.mvc.lang

Examples of org.geekhub.mvc.lang.Language


    public void init() {

    }

    public String translate(String source) {
    Language language = languageDetector.detectLanguage(source);
    String[] words = source.split(" ");
    StringBuilder sb = new StringBuilder();
    for (String word : words) {
      String translatedWord = dictionary.translate(word, language);
      sb.append(translatedWord + " ");
View Full Code Here

TOP

Related Classes of org.geekhub.mvc.lang.Language

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.