Package org.dbwiki.web.ui.printer

Examples of org.dbwiki.web.ui.printer.SchemaNodeListIndex


  public void printGroupNode(DatabaseGroupNode node, RequestParameterVersion versionParameter, HtmlLinePrinter body) throws org.dbwiki.exception.WikiException {
    SchemaLayout layout = _layouter.get(node.schema());
   
    body.openTABLE(layout.getCSS(CSS.CSSObjectFrame));
    SchemaNodeListIndex children = new SchemaNodeListIndex(node, _layouter);
    for (int i = 0; i < children.size(); i++) {
      // filtering of versions handled in getLinesForNodeList
      HtmlPage lines = getLinesForNodeList(children.get(i), versionParameter);
      if (lines.size() > 0) {
        body.openTR();
        body.openTD(layout.getCSS(CSS.CSSObjectListing));
        body.add(lines);
        body.closeTD();
View Full Code Here


      if (layout.getShowContent() == true) {
       
        content.openTABLE(layout.getCSS(CSS.CSSContentFrame));
               
        // Display the children
        SchemaNodeListIndex children = new SchemaNodeListIndex(group, _layouter);
        for (int i = 0; i < children.size(); i++) {
          HtmlPage lines = getLinesForNodeList(children.get(i), versionParameter);
          if (lines.size() > 0) {
            content.openTR();
            content.openTD(layout.getCSS(CSS.CSSContentListing));
            content.add(lines);
            content.closeTD();
View Full Code Here

TOP

Related Classes of org.dbwiki.web.ui.printer.SchemaNodeListIndex

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.