Here you can find the source of getRenderedComponentAt(JTable table, int row, int column)
public static Component getRenderedComponentAt(JTable table, int row, int column)
//package com.java2s; //License from project: Apache License import javax.swing.*; import java.awt.*; public class Main { public static Component getRenderedComponentAt(JTable table, int row, int column) { return table.getCellRenderer(row, column).getTableCellRendererComponent(table, table.getValueAt(row, column), table.isCellSelected(row, column), false, row, column); }// w w w. ja v a 2s. c om }