Examples of DBCategory


Examples of com.appspot.gaeforum309.db.DBCategory

  public void initTemplate(PageInfo pageInfo) {
    addSection(DBCategory.tagName, new Template.ITemplateSection() {

      @Override
      public void head(StringBuilder response, Path path, IPathable object) {
        DBCategory category = (DBCategory)object;
       
        response.append("<div id=\"forum71\" class=\"main-head\"><h2 class=\"hn\"><span><a href='"+ Page.getUrl(category) +"'>"+ category.getTitre() +"</a></span></h2></div>");
        response.append("<div class=\"main-subhead\">" +
            "<p class=\"item-summary\"><span><strong class=\"subject-title\">Forum</strong> in this category with details of <strong class=\"info-topics\">Conversation</strong>, <strong class=\"info-posts\">Last</strong>, <strong class=\"info-lastpost\">Date</strong></span></p>" +
            "</div>" +
            "<div id=\"category1\" class=\"main-content main-category\">");
      }
View Full Code Here

Examples of com.appspot.gaeforum309.db.DBCategory

   
    addSection(DBCategory.tagName, new Template.ITemplateSection() {
     
      @Override
      public void head(StringBuilder response, Path path, IPathable object) {
        DBCategory category = (DBCategory)object;
       
        response.append("<H2><a href='"+ ForumPages.Page.getUrl(category) +"'>" + category.getTitre()+"</a></H2><b>"+category.getDescription()+"</b>");
        response.append("<table border='1' width='100%'><tr><th width='10px'></th><th>Topic</th></tr>");
      }
     
      @Override
      public void foot(StringBuilder response, Path path, IPathable object) {
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.