Here you can find the source of setRowHeight(JTable table, int row)
public static void setRowHeight(JTable table, int row)
//package com.java2s; //License from project: LGPL import javax.swing.JTable; public class Main { public static void setRowHeight(JTable table, int row) { table.setRowHeight(row);// w w w . jav a 2 s . c o m } }