Uses of Interface
com.eliad.model.GridCellRenderer

Packages that use GridCellRenderer
com.eliad.model This package contains the models needed by the grid component.  
com.eliad.model.defaults This package contains default implementations for the interfaces and abstract classes in com.eliad.model.  
com.eliad.swing This is the main package of the grid component. 
 

Uses of GridCellRenderer in com.eliad.model
 

Methods in com.eliad.model that return GridCellRenderer
 GridCellRenderer StyleModel.getRenderer(java.lang.Class aClass, int row, int column, GridContext aGridContext)
          Returns an appropriate renderer for the cell specified by this row and column.
 

Uses of GridCellRenderer in com.eliad.model.defaults
 

Classes in com.eliad.model.defaults that implement GridCellRenderer
 class DefaultGridCellRenderer
          The standard class for rendering (drawing) individual cells or spans in a grid (in particular JSmartGrids).
static class DefaultGridCellRenderer.UIResource
          A subclass of DefaultGridCellRenderer that implements UIResource.
static class DefaultStyleModel.BooleanRenderer
          A specific renderer for truth values
static class DefaultStyleModel.DateRenderer
          A Renderer specialized for date cells.
static class DefaultStyleModel.DoubleRenderer
          A Renderer further specialized for precision numeric cells.
static class DefaultStyleModel.IconRenderer
          A Renderer specialized for image cells.
static class DefaultStyleModel.NumberRenderer
          A Renderer specialized for numeric cells.
 

Methods in com.eliad.model.defaults that return GridCellRenderer
protected  GridCellRenderer DefaultStyleModel.getRenderer(java.lang.Class aClass)
          Returns the cell renderer to be used when no renderer has been set in a StyleModel.
 GridCellRenderer DefaultStyleModel.getRenderer(java.lang.Class aClass, int row, int column, GridContext aGridContext)
          Returns an appropriate renderer for the cell specified by this row and column.
 

Methods in com.eliad.model.defaults with parameters of type GridCellRenderer
 void DefaultStyleModel.setRenderer(java.lang.Class clazz, GridCellRenderer renderer)
          Sets a default class renderer to be used if no renderer has been set in a cell.
 

Uses of GridCellRenderer in com.eliad.swing
 

Methods in com.eliad.swing that return GridCellRenderer
protected  GridCellRenderer JSmartGrid.getCellRenderer(int row, int column, int height, int width, java.lang.Object id)
          Returns an appropriate renderer for the cell specified by this row and column.
 

Methods in com.eliad.swing with parameters of type GridCellRenderer
protected  java.awt.Component JSmartGrid.prepareRenderer(GridCellRenderer renderer, int row, int column, int height, int width, java.lang.Object id)
          Prepares a renderer for display of a specific cell, taking into account whether the cell is the current one, whether it is selected, or editable.