Refreshing JTable when data has changed
问题 I have a problem with refreshing a JTable . I start with an empty ArrayList and after setting my choice of a combo box I load content to the ArrayList but JTable does not react to it - it remains empty. Is it a problem with a TableModel ? This is my code... public class ProjectTableModel extends AbstractTableModel{ private static final long serialVersionUID = 1L; private static ArrayList<String> caseList = new ArrayList<String>(); @Override public int getColumnCount() { return 1; } @Override