Package com.google.template.soy.msgs.restricted

Examples of com.google.template.soy.msgs.restricted.SoyMsgBundleImpl


    } catch (IOException e) {
      throw new AssertionError("Should not fail in reading a string.");
    }

    // Build a SoyMsgBundle from the parsed data (stored in xliffSaxHandler).
    return new SoyMsgBundleImpl(xliffSaxHandler.getTargetLocaleString(), xliffSaxHandler.getMsgs());
  }
View Full Code Here


   */
  @Override public SoyMsgBundle exec(SoyNode node) {
    msgs = Lists.newArrayList();
    currentSource = null;
    visit(node);
    return new SoyMsgBundleImpl(null, msgs);
  }
View Full Code Here

            while (iter.hasNext()) {
                msgs.add(iter.next());
            }
        }

        return new SoyMsgBundleImpl(localString, msgs);
    }
View Full Code Here

TOP

Related Classes of com.google.template.soy.msgs.restricted.SoyMsgBundleImpl

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.