Class DefaultTextCellRenderer
- java.lang.Object
-
- de.hybris.platform.cockpit.model.listview.impl.DefaultTextCellRenderer
-
- All Implemented Interfaces:
CellRenderer
- Direct Known Subclasses:
ConstraintGroupCellRenderer,ConstraintSeverityCellRenderer,CronJobDetailsTextCellRenderer
public class DefaultTextCellRenderer extends java.lang.Object implements CellRenderer
Simple cell renderer that renders a string representation of the value of interest.
-
-
Constructor Summary
Constructors Constructor Description DefaultTextCellRenderer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected TypeServicegetTypeService()voidrender(TableModel model, int colIndex, int rowIndex, org.zkoss.zk.ui.Component parent)Renders the cell content of the cell at position (colIndex,rowIndex).
-
-
-
Method Detail
-
render
public void render(TableModel model, int colIndex, int rowIndex, org.zkoss.zk.ui.Component parent)
Description copied from interface:CellRendererRenders the cell content of the cell at position (colIndex,rowIndex).- Specified by:
renderin interfaceCellRenderer- Parameters:
model- the underlying table model containing information about the cell that is to be renderedcolIndex- zero based column index of the cell to be renderedrowIndex- zero based row index of the cell to be renderedparent- the parent component that will contain the view components created by the renderer
-
getTypeService
protected TypeService getTypeService()
-
-