there is a collection with data

static ArrayList<MyBeans> all = new ArrayList<MyBeans>(); 

there is a table that displays it

 TableModel model = new Table(all); JTable table = new JTable(model); 

let's say ArrayList<MyBeans> all has changed dynamically. How to transfer these changes to the table ??

    1 answer 1

    The model has a fireTableDataChanged () method or so. Modified - call and the table will reflect the changes

    • @Yuri_Prime, Try to write more detailed answers. Explain what your statement is based on. - Nicolas Chabanovsky