Examples of TableProperties


Examples of org.displaytag.properties.TableProperties

    /**
     * Private constructor.
     */
    private ExportViewFactory()
    {
        TableProperties properties = TableProperties.getInstance(null);
        String[] exportTypes = properties.getExportTypes();

        if (log.isInfoEnabled())
        {
            log.info(Messages.getString("ExportViewFactory.initializing", //$NON-NLS-1$
                new Object[]{ArrayUtils.toString(exportTypes)}));
        }
        for (int j = 0; j < exportTypes.length; j++)
        {
            String className = properties.getExportClass(exportTypes[j]);
            registerExportView(exportTypes[j], className);
        }
    }
View Full Code Here

Examples of org.displaytag.properties.TableProperties

        try
        {
            // table id used for logging
            this.id = id;

            TableProperties properties = model.getProperties();

            if (log.isDebugEnabled())
            {
                log.debug("[" + this.id + "] writeTable called for table [" + this.id + "]");
            }

            // Handle empty table
            boolean noItems = model.getRowListPage().size() == 0;
            if (noItems && !properties.getEmptyListShowTable())
            {
                writeEmptyListMessage(properties.getEmptyListMessage());
                return;
            }

            // Put the page stuff there if it needs to be there...
            if (properties.getAddPagingBannerTop())
            {
                // search result and navigation bar
                writeTopBanner(model);
            }
View Full Code Here

Examples of org.odftoolkit.simple.style.TableProperties

      int size = nodes.getLength();
      for (int i = 0; i < size; i++) {
        element.removeChild(nodes.item(0));
      }
    }
    TableProperties properties = tableContainer.getStyleHandler()
        .getTablePropertiesForWrite();
    return properties;
  }
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.