Examples of DictionaryFactory


Examples of org.jboss.test.bpel.ws.consumption.partner.spi.DictionaryFactory

  public TDocument translate(TTranslationRequest translationRequest)
  throws TDictionaryNotAvailable, TTextNotTranslatable, RemoteException {
    TDocument document = translationRequest.getDocument();
    Locale sourceLocale = new Locale(document.getHead().getLanguage());
    Locale targetLocale = new Locale(translationRequest.getTargetLanguage());
    DictionaryFactory dictionaryFactory = DictionaryFactory.getInstance(sourceLocale, targetLocale);
    Dictionary dictionary = dictionaryFactory.createDictionary(sourceLocale, targetLocale);
    return dictionary.translate(document);
  }
View Full Code Here

Examples of org.jboss.test.bpel.ws.consumption.partner.spi.DictionaryFactory

  public String translate(String text, String sourceLanguage, String targetLanguage)
      throws TDictionaryNotAvailable, TTextNotTranslatable, RemoteException {
    Locale sourceLocale = new Locale(sourceLanguage);
    Locale targetLocale = new Locale(targetLanguage);
    DictionaryFactory dictionaryFactory = DictionaryFactory.getInstance(sourceLocale, targetLocale);
    Dictionary dictionary = dictionaryFactory.createDictionary(sourceLocale, targetLocale);
    return dictionary.translate(text);
  }
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.