how to use renderrend in the tutorial?
i wish to shade the area or textfield or table when i point my arrow to that particular place..
someme guide me to http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
n use the renderer..
how i implement to my code?
thanks for drop the time read and help me
[306 byte] By [
ahgana] at [2007-10-2 3:58:59]

Look up the classes I mentioned in the Javadoc, that should tell you all you need to know.
Detect the mouse location with,
MouseListener.mouseMoved()
Get the cell position with,
JTable.columnAtPoint(), JTable.rowAtPoint()
And in your TableCellRenderer, if the cell in question is the one which is hovered over, set the background with,
JComponent.setBackground()
This article tells you enough to get you sorted with implementing your own renderer,
http://java.sun.com/docs/books/tutorial/uiswing/components/table.html