Examples of TDocument


Examples of org.jboss.test.bpel.ws.consumption.partner.types.TDocument

 
  private static final Log log = LogFactory.getLog(DocumentTranslator_Impl.class);

  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.types.TDocument

    }
   
    TDocumentBody transBody = new TDocumentBody();
    transBody.setParagraph(transParagraphs);
   
    TDocument targetDocument = new TDocument();
    targetDocument.setHead(transHead);
    targetDocument.setBody(transBody);
   
    return targetDocument;
  }
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.