Here you can find the source of tryToEnableRowSorting(JTable listTbl)
public static void tryToEnableRowSorting(JTable listTbl)
//package com.java2s; //License from project: Open Source License import javax.swing.JTable; import javax.swing.table.TableRowSorter; public class Main { public static void tryToEnableRowSorting(JTable listTbl) { TableRowSorter sorter = new TableRowSorter(listTbl.getModel()); listTbl.setRowSorter(sorter);//w w w . ja v a 2s .c om } }