Uses of Interface
net.sf.jeppers.grid.CellStyle

Packages that use CellStyle
net.sf.jeppers.grid   
 

Uses of CellStyle in net.sf.jeppers.grid
 

Classes in net.sf.jeppers.grid that implement CellStyle
 class DefaultCellStyle
          Default implementation of CellStyle.
 

Methods in net.sf.jeppers.grid that return CellStyle
 CellStyle StyleModel.getCellStyle(int row, int column)
          Returns the style for the cell at row, column.
 CellStyle DefaultStyleModel.getDefaultCellStyle()
           
 CellStyle DefaultStyleModel.getCellStyle(int row, int column)
           
 CellStyle DefaultCellStyle.copy()
           
 CellStyle CellStyle.copy()
          Return a new object that is a duplicate of this CellStyle
 

Methods in net.sf.jeppers.grid with parameters of type CellStyle
 java.awt.Component GridCellRenderer.getRendererComponent(int row, int column, java.lang.Object value, CellStyle style, boolean isSelected, boolean hasFocus, JGrid grid)
          Returns the component used for drawing the cell.
 java.awt.Component GridCellEditor.getEditorComponent(int row, int column, java.lang.Object value, CellStyle style, boolean isSelected, JGrid grid)
          Sets an initial value for the editor.
 java.awt.Component GenericCellRenderer.getRendererComponent(int row, int column, java.lang.Object value, CellStyle style, boolean isSelected, boolean hasFocus, JGrid grid)
           
 java.awt.Component GenericCellEditor.getEditorComponent(int row, int column, java.lang.Object value, CellStyle style, boolean isSelected, JGrid grid)
           
 void DefaultStyleModel.setDefaultCellStyle(CellStyle defaultStyle)
           
 void DefaultStyleModel.setCellStyle(CellStyle style, int row, int column)
           
 

Constructors in net.sf.jeppers.grid with parameters of type CellStyle
DefaultCellStyle(CellStyle parent)