Uses of Interface
jdbreport.model.TableRow

Packages that use TableRow
jdbreport.design.model   
jdbreport.grid   
jdbreport.model   
jdbreport.model.clipboard   
jdbreport.model.io.xml   
 

Uses of TableRow in jdbreport.design.model
 

Classes in jdbreport.design.model that implement TableRow
 class TemplateNullRow
           
 class TemplateRow
           
 

Methods in jdbreport.design.model that return TableRow
 TableRow TemplateRowModel.createTableRow()
           
protected  TableRow TemplateRowModel.getNullRow()
           
 

Methods in jdbreport.design.model with parameters of type TableRow
protected  Cell TemplateBook.generateCell(TableRow newRow, int currentRow, int column, CellObject oldCell)
           
protected  Cell TemplateBook.generateDetailCell(TableRow newRow, int currentRow, int column, CellObject oldCell)
           
protected  Cell TemplateBook.generateHeaderFooterCell(TableRow newRow, int currentRow, int column, CellObject oldCell)
           
 

Uses of TableRow in jdbreport.grid
 

Fields in jdbreport.grid declared as TableRow
protected  TableRow RowHeader.draggedRow
          The index of the row being dragged.
protected  TableRow RowHeader.resizingRow
          The index of the row being resized.
 

Methods in jdbreport.grid that return TableRow
 TableRow RowHeader.getDraggedRow()
          Returns the the dragged row, if and only if, a drag is in process, otherwise returns null.
 TableRow RowHeader.getResizingRow()
          Returns the resizing row.
 

Methods in jdbreport.grid with parameters of type TableRow
 void RowHeader.setDraggedRow(TableRow aRow)
          Sets the header's draggedRow to aRow.
 void RowHeader.setResizingRow(TableRow aRow)
          Sets the header's resizingRow to aRow.
 

Uses of TableRow in jdbreport.model
 

Classes in jdbreport.model that implement TableRow
 class NullReportRow
           
 class ReportRow
           
 

Fields in jdbreport.model with type parameters of type TableRow
protected  ArrayList<TableRow> ReportRowModel.rowList
           
 

Methods in jdbreport.model that return TableRow
 TableRow ReportRowModel.addRow()
           
 TableRow TableRowModel.addRow()
          Adds the new row
 TableRow ReportRowModel.addRow(int row)
           
 TableRow TableRowModel.addRow(int row)
          Adds the row at the specified position
 TableRow ReportRowModel.createTableRow()
           
 TableRow TableRowModel.createTableRow()
          Creates new default TableRow
 TableRow RowsGroup.getChild(int index)
           
 TableRow BaseRowGroup.getChild(int index)
           
 TableRow Group.getFirstGroupRow()
           
 TableRow BaseRowGroup.getFirstGroupRow()
           
 TableRow TreeRowGroup.getFirstGroupRow()
           
 TableRow BaseRowGroup.getLastGroupRow()
           
protected  TableRow ReportRowModel.getNullRow()
           
 TableRow ReportRowModel.getRow(int row)
           
protected  TableRow BaseRowGroup.getRow(int row)
           
 TableRow TableRowModel.getRow(int row)
          Returns the TableRow from the specified position
 TableRow RowsGroup.remove(int index)
           
 TableRow BaseRowGroup.remove(int index)
           
 

Methods in jdbreport.model that return types with arguments of type TableRow
protected  List<TableRow> BaseRowGroup.getChildList()
           
 Iterator<TableRow> Group.getVisibleRowIterator()
          Returns all visible rows
 Iterator<TableRow> BaseRowGroup.getVisibleRowIterator()
           
 Iterator<TableRow> TreeRowGroup.getVisibleRowIterator()
           
 Iterator<TableRow> ReportRowModel.iterator()
           
 Iterator<TableRow> Group.iterator()
          Returns all rows
 Iterator<TableRow> BaseRowGroup.iterator()
           
 Iterator<TableRow> TreeRowGroup.iterator()
           
 

Methods in jdbreport.model with parameters of type TableRow
 int ReportRowModel.addRow(int arow, TableRow tableRow)
           
 void RowsGroup.addRow(int index, TableRow row)
           
 void BaseRowGroup.addRow(int index, TableRow row)
           
 void DetailGroup.addRow(int index, TableRow row)
           
 int TableRowModel.addRow(int row, TableRow tableRow)
          Adds the row at the specified position
 int ReportRowModel.addRow(RowsGroup group, int indexInGroup, TableRow tableRow)
           
 int TableRowModel.addRow(RowsGroup group, int indexInGroup, TableRow tableRow)
          Adds the row to the group
 boolean RowsGroup.addRow(TableRow row)
           
 boolean BaseRowGroup.addRow(TableRow row)
           
 RowsGroup ReportRowModel.getGroup(TableRow row)
           
 RowsGroup Group.getGroup(TableRow row)
           
 RowsGroup BaseRowGroup.getGroup(TableRow row)
           
 RowsGroup TreeRowGroup.getGroup(TableRow row)
           
 RowsGroup RootGroup.getGroup(TableRow row)
           
 RowsGroup TableRowModel.getGroup(TableRow tableRow)
          Returns the group which contains the tableRow
 int ReportRowModel.getRowIndex(TableRow row)
           
 int TableRowModel.getRowIndex(TableRow tableRow)
          Returns row's position in the model
 void ReportRowModel.setRowHeight(TableRow row, int newHeight)
           
 void TableRowModel.setRowHeight(TableRow tableRow, int newHeight)
          Sets the height for tableRow to newHeight.
 

Method parameters in jdbreport.model with type arguments of type TableRow
protected  double BaseRowGroup.getTotalResult(int func, Iterator<TableRow> it, int column)
           
 

Uses of TableRow in jdbreport.model.clipboard
 

Methods in jdbreport.model.clipboard with parameters of type TableRow
protected  void ClipboardParser.writeRow(PrintWriter writer, TableRow row, ReportModel model, int currentRow)
           
 

Uses of TableRow in jdbreport.model.io.xml
 

Methods in jdbreport.model.io.xml with parameters of type TableRow
protected  void ReportBookWriterParser.writeRow(PrintWriter writer, TableRow row, ReportModel model)