Package fbench.translate

Examples of fbench.translate.Translator


        }*/
       
        stString = FBench.removeHTML(stString);
       
      ParseResult result = null;
        Translator translator = TranslatorSource.getInstance().getTranslator("ST", targetLanguage);
      if(translator != null){
        ParseContext context = new ParseContext(new StringReader(stString), ParseTarget.guardCondition, document);
        result = translator.parse(context);
      }
      else{
        return;
      }
     
View Full Code Here


          }
         
          String code = codeNode.getAttribute("Text");
          code = FBench.removeHTML(code);
         
          Translator translator = TranslatorSource.getInstance().getTranslator(sourceLanguage, targetLanguage);
          if(translator != null){
            ParseContext context = new ParseContext(new StringReader(code), ParseTarget.algorithm, document);
            result = translator.parse(context);
          }
          else{
            System.out.println("No translator: " +
                sourceLanguage + " to " + targetLanguage + " (" + elem.getAttribute("Name") + ")");
            return;
View Full Code Here

TOP

Related Classes of fbench.translate.Translator

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.