Package org.jboss.test.bpel.ws.consumption.partner.spi

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


  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


  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

Related Classes of org.jboss.test.bpel.ws.consumption.partner.spi.Dictionary

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.