Package org.rendersnake.site.components

Examples of org.rendersnake.site.components.IndexContent


    public void renderOn(HtmlCanvas html) throws IOException {
       
        html.getPageContext().set("title","renderSnake - Home");
       
        // Use a separate component for rendering the index content
        html.render(new SiteLayoutWrapper(new IndexContent()));
    }
View Full Code Here


  public void get(HtmlCanvas html, HandlerResult result) throws IOException {
        html.getPageContext().withString("title","renderSnake - Home");
       
        // Use a separate component for rendering the index content
        html.render(new SiteLayoutWrapper(new IndexContent()));   
  }
View Full Code Here

TOP

Related Classes of org.rendersnake.site.components.IndexContent

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.