// make part of a JTable visible in the scroll region.
// Must run on Swing thread.
final Rectangle r = jTable.getCellRect( rowIndex, colIndex, true );
if ( r != null )
   {
   jTable.scrollRectToVisible( r );
   }