Package org.apache.shindig.gadgets.templates

Examples of org.apache.shindig.gadgets.templates.AbstractTagHandler


        new FakeTemplateLibraryFactory(),
        new FakeContainerConfig());
  }
 
private static TagHandler testTagHandler(String name, final String content) {
   return new AbstractTagHandler("#my", name) {
    public void process(Node result, Element tag, TemplateProcessor processor) {
      result.appendChild(result.getOwnerDocument().createTextNode(content));
    }
   };
}
View Full Code Here

TOP

Related Classes of org.apache.shindig.gadgets.templates.AbstractTagHandler

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.