queryB.getParameters().add(new JdbcParameter(2, DataType.INTEGER, maxParam));
report.getDataQueries().add(queryB);
/* Add a "Layout" grid to the page */
Grid grid = new Grid();
grid.setCellPadding(5);
report.getWebPage().addChildElement(grid);
GridRow row1 = new GridRow();
GridRow row2 = new GridRow();
GridRow row3 = new GridRow();
GridRow row4 = new GridRow();
grid.addRows(row1,row2,row3,row4);
row1.addCell(new GridCell(new RawHTML("<h2>Top 5 Pets</h2>")));
row1.addCell(new GridCell(new RawHTML("<h2>Vote Summary</h2>")));
row3.addCell(new GridCell(new RawHTML("<h2>Pet Locations</h2>")));