com.jidesoft.grid
Interface ReferenceRow
- All Superinterfaces:
- GroupRow, Node, Row
- All Known Implementing Classes:
- IndexReferenceRow
public interface ReferenceRow
- extends GroupRow
An interface that references to a row in
the underlying data model. By default, we have IndexReferenceRow that
refers to a row using row index. If you already have an object that represents a row
in a table model, you can use that object inside this ReferenceRow. Since it is an
interface, it allows you to create your own concrete class and override DefaultGroupTableModel.createReferenceRow(javax.swing.table.TableModel,int)
method to use your own class.